diff --git a/Dockerfile b/Dockerfile index 287fa96..5e754c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /src COPY *.csproj . RUN dotnet restore COPY . . -RUN dotnet publish -c Release -o /app --no-restore +RUN dotnet publish -c Release -o /app FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app