Skip to content

Commit ab510c6

Browse files
Merge branch 'master' into task/#43_create_windows_image_on_release
2 parents caee4a0 + dd57632 commit ab510c6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pushtomaster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
env:
3737
ASPNETCORE_ENVIRONMENT: "Production"
3838

39-
runs-on: windows-2019
39+
runs-on: windows-latest
4040

4141
steps:
4242
- uses: actions/[email protected]

TestHosts/TestHosts/Dockerfilewindows

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM stuartferguson/txnprocbasewindows AS base
22
USER ContainerAdministrator
33
WORKDIR /app
44

5-
FROM mcr.microsoft.com/dotnet/sdk:8.0-windowsservercore-ltsc2019 AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:8.0-windowsservercore-ltsc2022 AS build
66
WORKDIR /src
77
COPY ["TestHosts/TestHosts.csproj", "TestHosts/"]
88
COPY ["TestHosts/NuGet.Config", "TestHosts/"]
@@ -18,4 +18,4 @@ RUN dotnet publish "TestHosts.csproj" -c Release -o /app/publish
1818
FROM base AS final
1919
WORKDIR /app
2020
COPY --from=publish /app/publish .
21-
ENTRYPOINT ["dotnet", "TestHosts.dll"]
21+
ENTRYPOINT ["dotnet", "TestHosts.dll"]

0 commit comments

Comments
 (0)