fix: update output path for Angular build in Dockerfile

This commit is contained in:
Marek Lesko
2025-10-19 18:52:19 +00:00
parent 8cc8be7c2f
commit bae87359b0

View File

@@ -3,7 +3,7 @@ FROM node:24 AS web-build
WORKDIR /app/web
COPY Web/ ./
RUN npm ci
RUN npm run build -- --output-path=dist/Web/browser
RUN npm run build -- --output-path=dist/Web
RUN ls /app/web/dist/Web/browser
# Build .NET Api app