From bce9f568c10324fd6a59e08e34803ddefc1ef6d1 Mon Sep 17 00:00:00 2001 From: ilitirit Date: Fri, 5 May 2023 02:37:01 +0200 Subject: [PATCH] Fix build stage --- Expedience.Web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Expedience.Web/Dockerfile b/Expedience.Web/Dockerfile index 88ff0c6..eee2c9c 100644 --- a/Expedience.Web/Dockerfile +++ b/Expedience.Web/Dockerfile @@ -27,7 +27,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:7.0.4-jammy-arm64v8 # Set the working directory WORKDIR /app -COPY --from=publish /app/publish . +COPY --from=build /app/publish . # Set the ASPNETCORE_ENVIRONMENT environment variable ENV ASPNETCORE_ENVIRONMENT=Production