Skip to content

Commit

Permalink
chore(deps): update mcr.microsoft.com/dotnet/sdk docker tag to v9
Browse files Browse the repository at this point in the history
| datasource | package                      | from | to  |
| ---------- | ---------------------------- | ---- | --- |
| docker     | mcr.microsoft.com/dotnet/sdk | 8.0  | 9.0 |
  • Loading branch information
renovate[bot] authored Oct 2, 2024
1 parent 3da5f98 commit 8e6dae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set the base image as the .NET 8.0 SDK (this includes the runtime)
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)
COPY . ./
Expand All @@ -14,6 +14,6 @@ LABEL homepage="https://github.com/KinsonDigital/VersionMiner"
LABEL com.github.actions.name="Version Miner"

# 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 /out .
ENTRYPOINT [ "dotnet", "/VersionMiner.dll" ]

0 comments on commit 8e6dae9

Please sign in to comment.