File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 as build-env
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 as build-env
2
2
# Copy everything and publish the release (publish implicitly restores and builds)
3
3
WORKDIR /app
4
4
COPY . ./
5
5
RUN dotnet publish "actions/sequester/ImportIssues/ImportIssues.csproj" -c Release -o out --no-self-contained
6
6
7
7
# 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
9
9
COPY --from=build-env /app/out .
10
10
ENTRYPOINT [ "dotnet" , "/ImportIssues.dll" ]
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 as build-env
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 as build-env
2
2
# Copy everything and publish the release (publish implicitly restores and builds)
3
3
WORKDIR /app
4
4
COPY . ./
5
5
RUN dotnet publish "WhatsNew.Cli/WhatsNew.Cli.csproj" -c Release -o out --no-self-contained
6
6
7
7
# 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
9
9
COPY --from=build-env /app/out .
10
10
ENTRYPOINT [ "dotnet" , "/WhatsNew.dll" ]
You can’t perform that action at this time.
0 commit comments