From 8cc8be7c2f8effec05f11a66e2975a14f5385a6e Mon Sep 17 00:00:00 2001 From: Marek Lesko Date: Sun, 19 Oct 2025 18:46:56 +0000 Subject: [PATCH] fix: correct path for listing contents of build output directory in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3853d0..2903d51 100755 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app/web COPY Web/ ./ RUN npm ci RUN npm run build -- --output-path=dist/Web/browser -RUN ls dist/Web/browser +RUN ls /app/web/dist/Web/browser # Build .NET Api app FROM mcr.microsoft.com/dotnet/sdk:8.0 AS api-build