Skip to content

Commit 75889ac

Browse files
Bump dotnet/sdk from 8.0 to 9.0 in the docker group (#438)
Bumps the docker group with 1 update: dotnet/sdk. Updates `dotnet/sdk` from 8.0 to 9.0 --- updated-dependencies: - dependency-name: dotnet/sdk dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Wagner <[email protected]>
1 parent 5c98b4b commit 75889ac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sequester.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env
22
# Copy everything and publish the release (publish implicitly restores and builds)
33
WORKDIR /app
44
COPY . ./
55
RUN dotnet publish "actions/sequester/ImportIssues/ImportIssues.csproj" -c Release -o out --no-self-contained
66

77
# Relayer the .NET SDK, anew with the build output
8-
FROM mcr.microsoft.com/dotnet/sdk:8.0
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0
99
COPY --from=build-env /app/out .
1010
ENTRYPOINT [ "dotnet", "/ImportIssues.dll" ]

whatsnew.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env
22
# Copy everything and publish the release (publish implicitly restores and builds)
33
WORKDIR /app
44
COPY . ./
55
RUN dotnet publish "WhatsNew.Cli/WhatsNew.Cli.csproj" -c Release -o out --no-self-contained
66

77
# Relayer the .NET SDK, anew with the build output
8-
FROM mcr.microsoft.com/dotnet/sdk:8.0
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0
99
COPY --from=build-env /app/out .
1010
ENTRYPOINT [ "dotnet", "/WhatsNew.dll" ]

0 commit comments

Comments
 (0)