diff --git a/app/Dockerfile b/app/Dockerfile index 86abfec..1d16707 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM dhi.io/dotnet:10.0.101-sdk-alpine3.22 AS builder +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0.101-noble AS builder ARG TARGETARCH WORKDIR /app COPY my-sample-app.csproj . @@ -11,7 +11,7 @@ RUN dotnet publish my-sample-app.csproj \ -o /my-sample-app \ --no-restore -FROM dhi.io/dotnet:10.0.1-alpine3.22 +FROM mcr.microsoft.com/dotnet/runtime:10.0.1-noble-chiseled-extra WORKDIR /app COPY --from=builder /my-sample-app . EXPOSE 8080