wip: Fix ContainerDashboard

This commit is contained in:
Constantin
2025-09-13 15:49:32 +03:00
parent b40e4f277e
commit 36776353b9
7 changed files with 747 additions and 130 deletions
+1
View File
@@ -9,5 +9,6 @@ RUN npm run build
# Stage 2: Serve with nginx
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]