-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dotnet/sdk from 8.0 to 9.0 in the docker group
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] <support@github.com>
- Loading branch information
1 parent
7b78ba3
commit 8ca453f
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env | ||
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env | ||
# Copy everything and publish the release (publish implicitly restores and builds) | ||
WORKDIR /app | ||
COPY . ./ | ||
RUN dotnet publish "actions/sequester/ImportIssues/ImportIssues.csproj" -c Release -o out --no-self-contained | ||
|
||
# Relayer the .NET SDK, anew with the build output | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 | ||
FROM mcr.microsoft.com/dotnet/sdk:9.0 | ||
COPY --from=build-env /app/out . | ||
ENTRYPOINT [ "dotnet", "/ImportIssues.dll" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env | ||
FROM mcr.microsoft.com/dotnet/sdk:9.0 as build-env | ||
# Copy everything and publish the release (publish implicitly restores and builds) | ||
WORKDIR /app | ||
COPY . ./ | ||
RUN dotnet publish "WhatsNew.Cli/WhatsNew.Cli.csproj" -c Release -o out --no-self-contained | ||
|
||
# Relayer the .NET SDK, anew with the build output | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0 | ||
FROM mcr.microsoft.com/dotnet/sdk:9.0 | ||
COPY --from=build-env /app/out . | ||
ENTRYPOINT [ "dotnet", "/WhatsNew.dll" ] |