first commit

This commit is contained in:
atseirjo
2025-10-07 12:54:18 +02:00
commit fd00141fba
3 changed files with 83 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20.19.0 AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm install -g @angular/cli
COPY . .
RUN ng build --configuration=production
CMD [ "ng", "serve","--port", "4240", "--host", "0.0.0.0" ]