build(Dockerfile): expose port 4200 for Angular app

This commit is contained in:
Jan Gleytenhoover 2025-01-19 19:40:03 +01:00
parent 9071a2a60f
commit 7548342803
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -7,5 +7,5 @@ COPY . /usr/src/app
RUN npm install -g @angular/cli
RUN npm install
EXPOSE 4200
CMD ["sh", "-c", "ng serve --configuration=${ANGULAR_CONFIG:-development}"]