From 4fe39d96af3c8b384a535c4b07c93d82e0dd7578 Mon Sep 17 00:00:00 2001 From: Jonathan Bout Date: Mon, 25 Nov 2024 14:47:23 +0100 Subject: [PATCH] restore is needed --- SimpleCDN/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleCDN/Dockerfile b/SimpleCDN/Dockerfile index ae3b33c..ff4dd50 100644 --- a/SimpleCDN/Dockerfile +++ b/SimpleCDN/Dockerfile @@ -26,7 +26,7 @@ RUN dotnet build "./SimpleCDN.csproj" --no-restore -c $BUILD_CONFIGURATION -r $D FROM build AS publish ARG BUILD_CONFIGURATION=Release ARG DOTNET_BUILD_PLATFORM=linux-x64 -RUN dotnet publish "./SimpleCDN.csproj" --no-restore -c $BUILD_CONFIGURATION -r $DOTNET_BUILD_PLATFORM -o /app/publish /p:UseAppHost=false +RUN dotnet publish "./SimpleCDN.csproj" -c $BUILD_CONFIGURATION -r $DOTNET_BUILD_PLATFORM -o /app/publish /p:UseAppHost=false # This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration) FROM base AS final