diff --git a/Notesnook.API/Dockerfile b/Notesnook.API/Dockerfile index 4fb524d..1cda1a7 100644 --- a/Notesnook.API/Dockerfile +++ b/Notesnook.API/Dockerfile @@ -10,7 +10,7 @@ RUN dotnet restore -v d ./Notesnook.sln WORKDIR /app/Notesnook.API/ # build ENV DOTNET_TC_QuickJitForLoops="1" DOTNET_ReadyToRun="0" DOTNET_TieredPGO="1" DOTNET_SYSTEM_GLOBALIZATION_INVARIANT="true" -RUN dotnet publish -c Release -o /app/out --use-current-runtime --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 +RUN dotnet publish -c Release -o /app/out --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 # final stage/image FROM mcr.microsoft.com/dotnet/aspnet:8.0 diff --git a/Streetwriters.Identity/Dockerfile b/Streetwriters.Identity/Dockerfile index ae1ba4c..c605eda 100644 --- a/Streetwriters.Identity/Dockerfile +++ b/Streetwriters.Identity/Dockerfile @@ -10,7 +10,7 @@ RUN dotnet restore -v d ./Notesnook.sln WORKDIR /app/Streetwriters.Identity/ # build ENV DOTNET_TC_QuickJitForLoops="1" DOTNET_ReadyToRun="0" DOTNET_TieredPGO="1" DOTNET_SYSTEM_GLOBALIZATION_INVARIANT="true" -RUN dotnet publish -c Release -o /app/out --use-current-runtime --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 +RUN dotnet publish -c Release -o /app/out --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 # final stage/image FROM mcr.microsoft.com/dotnet/aspnet:8.0 diff --git a/Streetwriters.Messenger/Dockerfile b/Streetwriters.Messenger/Dockerfile index 07e17f2..6106cd4 100644 --- a/Streetwriters.Messenger/Dockerfile +++ b/Streetwriters.Messenger/Dockerfile @@ -10,7 +10,7 @@ RUN dotnet restore -v d ./Notesnook.sln WORKDIR /app/Streetwriters.Messenger/ # build ENV DOTNET_TC_QuickJitForLoops="1" DOTNET_ReadyToRun="0" DOTNET_TieredPGO="1" DOTNET_SYSTEM_GLOBALIZATION_INVARIANT="true" -RUN dotnet publish -c Release -o /app/out --use-current-runtime --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 +RUN dotnet publish -c Release -o /app/out --self-contained false --no-restore /p:Runtimeidentifier=linux-x64 # final stage/image FROM mcr.microsoft.com/dotnet/aspnet:8.0