build-deploy workflow hinzugefügt.
All checks were successful
Angular Build & Deploy / deploy (push) Successful in 2m3s

This commit is contained in:
2025-12-30 15:01:31 +01:00
parent 9f1e8d7051
commit e9a5db619b
6 changed files with 58 additions and 2 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:20 AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build -- --configuration=production
FROM nginx:alpine
COPY --from=build /app/dist/OMDSAngularWebClient/browser /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]