From 965924ea194a726f79e9279d88b4cca96c1e2089 Mon Sep 17 00:00:00 2001 From: Elias Stepanik <40958815+eliasstepanik@users.noreply.github.com> Date: Wed, 31 May 2023 22:25:44 +0200 Subject: [PATCH] d --- Functions/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Functions/Dockerfile b/Functions/Dockerfile index b36ee4a..80cf58d 100644 --- a/Functions/Dockerfile +++ b/Functions/Dockerfile @@ -9,7 +9,7 @@ COPY ["Functions/Functions.csproj", "Functions/"] RUN dotnet restore "Functions/Functions.csproj" COPY . . WORKDIR "/src/Functions" -RUN dotnet build "Functions.csproj" -c Release -o /app/build +RUN dotnet build "Functions.csproj" -c Release -o /app/build --build-arg source=src FROM build AS publish RUN dotnet publish "Functions.csproj" -c Release -o /app/publish /p:UseAppHost=false