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 859c227 commit d7fc013Copy full SHA for d7fc013
api/UnMango.Wishlists.Api/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 as build
+FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 as build
2
ARG TARGETARCH
3
4
WORKDIR /build
@@ -9,7 +9,7 @@ RUN dotnet restore -a $TARGETARCH
9
COPY ./ .
10
RUN dotnet publish --no-restore -c Release -a $TARGETARCH -o /out
11
12
-FROM mcr.microsoft.com/dotnet/aspnet:8.0
+FROM mcr.microsoft.com/dotnet/aspnet:9.0
13
WORKDIR /app
14
COPY --from=build /out .
15
ENTRYPOINT ["dotnet", "UnMango.Wishlists.Api.dll"]
global.json
@@ -1,5 +1,5 @@
{
"sdk": {
- "version": "8.0.404"
+ "version": "9.0.101"
}
5
0 commit comments