File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2121 # github.repository as <account>/<repo>
2222 IMAGE_NAME : ${{ github.repository }}
2323 # platforms for the Docker multiplatform build
24- PLATFORMS : linux/amd64,linux/arm64,linux/arm/v7
24+ PLATFORMS : linux/amd64,linux/arm64
2525 # location of the Dockerfile
2626 DOCKERFILE : ./CrackSharp.Api/Dockerfile
2727
Original file line number Diff line number Diff line change 11# Use SDK image
2- FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build
2+ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0-noble AS build
33ARG TARGETARCH
44ARG BINARY_VERSION
55WORKDIR /source
@@ -12,7 +12,7 @@ RUN (echo "$BINARY_VERSION" | grep -Eq "^[0-9]+\.[0-9]+\.[0-9]+(-[a-z0-9.]+)?$")
1212 dotnet publish CrackSharp.Api -a $TARGETARCH -o /app
1313
1414# Use runtime image
15- FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-jammy -chiseled
15+ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-noble -chiseled
1616WORKDIR /app
1717COPY --from=build /app .
1818USER $APP_UID
You can’t perform that action at this time.
0 commit comments