From 93e886777c24fa5732fd37d3f162fef05bc19024 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Fri, 12 Apr 2024 02:26:55 +0200 Subject: [PATCH] [docker] Use jammy-chiseled as aot runner image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 91ff9cf0..d8cd699c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN dotnet publish --no-restore -c Release -a $TARGETARCH -o /app -p:EnableAOT=t # Enable globalization and time zones: # https://github.com/dotnet/dotnet-docker/blob/main/samples/enable-globalization.md # final stage/image -FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-composite AS image-aot +FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled AS image-aot WORKDIR /app COPY --from=builder-aot /app . ENTRYPOINT ["./Iceshrimp.Backend", "--environment", "Production", "--migrate-and-start"]