Skip to content

Commit

Permalink
Fix Dockerfile version.
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Dec 2, 2024
1 parent c7b1f70 commit cf7720c
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,4 +1,4 @@
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 restore
WORKDIR /app
Expand All @@ -16,6 +16,6 @@ LABEL com.github.actions.icon="alert-circle"
LABEL com.github.actions.color="yellow"

# Build the runtime image
FROM mcr.microsoft.com/dotnet/runtime:8.0
FROM mcr.microsoft.com/dotnet/runtime:9.0
COPY --from=build-env /app/out .
ENTRYPOINT [ "dotnet", "/DotNet.VersionSweeper.dll" ]

0 comments on commit cf7720c

Please sign in to comment.