From 2602c9a3b93f64f6492b125b0c977f1e78894b64 Mon Sep 17 00:00:00 2001 From: Marek Lesko Date: Sun, 19 Oct 2025 18:45:54 +0000 Subject: [PATCH] fix: add verification step to list contents of build output directory in Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index cdba0cf..b3853d0 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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