build: add Dockerfile for application containerization

This commit is contained in:
Jan Gleytenhoover 2025-01-19 19:34:13 +01:00
parent 45d8833be7
commit 9071a2a60f
Signed by: jank
GPG key ID: 50620ADD22CD330B

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:alpine
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install -g @angular/cli
RUN npm install
CMD ["sh", "-c", "ng serve --configuration=${ANGULAR_CONFIG:-development}"]