We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da21dc4 commit 9573bc5Copy full SHA for 9573bc5
Dockerfile
@@ -23,6 +23,9 @@ RUN dotnet publish src/UnityNuGet.Server -a "$TARGETARCH" -c Release -o /app/src
23
24
# Build runtime image
25
FROM mcr.microsoft.com/dotnet/aspnet:10.0
26
+RUN apt-get update && \
27
+ apt-get install -y curl && \
28
+ rm -rf /var/lib/apt/lists/*
29
WORKDIR /app
30
COPY --from=build /app/src/out .
31
ENTRYPOINT ["dotnet", "UnityNuGet.Server.dll"]
0 commit comments