From fd5fe86810a0f1423a43f92c9f9561dcd887cbf1 Mon Sep 17 00:00:00 2001 From: smallbenji Date: Fri, 15 Aug 2025 08:25:57 +0200 Subject: [PATCH] removing some lines inside Dockerfile --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32de673..fbb8f44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,9 +20,6 @@ FROM build AS publish ARG BUILD_CONFIGURATION=Release RUN dotnet publish "./YatzyGame/YatzyGame.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false -# Copy Vue.js build output to ASP.NET Core wwwroot -COPY --from=node-build /wwwroot/js/dist /app/publish/wwwroot/js/dist - # Final runtime stage FROM base AS final WORKDIR /app