LogoThreatmatic
Infra

Docker

instructions to build docker image locally

Overview

instructions to build docker image locally

# debug build
docker build --no-cache --progress=plain -f apps/web/Dockerfile  -t astra-web:latest .
# regular build
docker build -f apps/web/Dockerfile  -t astra-web:latest .

# debug run
docker run --init -it --entrypoint sh astra-web:latest
# regular run
docker run --init -it -p 3000:3000 astra-web:latest

Reference

How is this guide?

Last updated on

On this page