Skip to content

Commit 2546cc3

Browse files
Update WebApp.Dockerfile
1 parent 0984bc0 commit 2546cc3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

WebApp.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ USER node
77
RUN npm ci
88
COPY --chown=node:node ./frontend/ ./frontend
99
WORKDIR /home/node/app/frontend
10+
RUN npm install --save-dev @types/node @types/jest
1011
RUN NODE_OPTIONS=--max_old_space_size=8192 npm run build
1112

1213
FROM python:3.11-alpine
@@ -27,4 +28,4 @@ COPY --from=frontend /home/node/app/static /usr/src/app/static/
2728
WORKDIR /usr/src/app
2829
EXPOSE 80
2930

30-
CMD ["gunicorn" , "-b", "0.0.0.0:80", "app:app"]
31+
CMD ["gunicorn" , "-b", "0.0.0.0:80", "app:app"]

0 commit comments

Comments
 (0)