diff --git a/Sources/Dockerfile b/Sources/Dockerfile index 31e16dd..9e22eb3 100644 --- a/Sources/Dockerfile +++ b/Sources/Dockerfile @@ -21,7 +21,7 @@ RUN dotnet restore "Api/Api.csproj" COPY . . WORKDIR "/src/Api" RUN dotnet build "Api.csproj" -c Release -o /app/build -RUN chmod -R 755 ../src/Api +RUN chmod -R 755 ../Api FROM build AS publish RUN dotnet publish "Api.csproj" -c Release -o /app/publish /p:UseAppHost=false