diff --git a/Dockerfile b/Dockerfile index 2903d51..735b64f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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