fix: add verification step to list contents of build output directory in Dockerfile

This commit is contained in:
Marek Lesko
2025-10-19 18:45:54 +00:00
parent aae3eb92fa
commit 2602c9a3b9

View File

@@ -4,6 +4,7 @@ WORKDIR /app/web
COPY Web/ ./
RUN npm ci
RUN npm run build -- --output-path=dist/Web/browser
RUN ls dist/Web/browser
# Build .NET Api app
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS api-build