Fix 404 page missing on production container build

This commit is contained in:
Charles Bochet
2023-12-14 13:12:24 +01:00
parent a10f353a4c
commit fd3b7ccd9a
2 changed files with 2 additions and 3 deletions

View File

@ -35,7 +35,7 @@ prod-front-build:
@cd ../.. && docker build -f ./packages/twenty-docker/prod/twenty-front/Dockerfile --tag twenty-front . && cd -
prod-front-run:
@docker run -d -p 3000:3000 --name twenty-front twenty-front
@docker run -d -p 3001:3000 --name twenty-front twenty-front
prod-server-build:
@cd ../.. && docker build -f ./packages/twenty-docker/prod/twenty-server/Dockerfile --tag twenty-server . && cd -