diff --git a/src/API.Web/Dockerfile b/src/API.Web/Dockerfile index 70c3e93a..2d9f7918 100644 --- a/src/API.Web/Dockerfile +++ b/src/API.Web/Dockerfile @@ -6,7 +6,7 @@ RUN dotnet restore --runtime linux-$TARGETARCH WORKDIR /source/src/API.Web RUN dotnet publish --no-restore --configuration Release --runtime linux-$TARGETARCH --no-self-contained --output /app -FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:10.0.8 AS runtime +FROM --platform=$TARGETARCH mcr.microsoft.com/dotnet/aspnet:10.0.9 AS runtime RUN apt-get update && apt-get upgrade -y && apt-get install -y curl=8.5.0-2ubuntu10.9 && apt-get clean WORKDIR /app COPY --link --from=build /app .