Initial commit

This commit is contained in:
2025-10-28 20:36:47 +01:00
commit 879d31905c
40 changed files with 11818 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", "4260", "--host", "0.0.0.0" ]