From 16b80764dc6921fa59076e7e2a9b288178645509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20R=C3=A4tzel?= Date: Tue, 8 Aug 2023 20:46:01 +0000 Subject: [PATCH] dotnet --- .github/workflows/build-native-tools.yml | 2 +- .github/workflows/publish-to-release.yml | 2 +- .github/workflows/test-and-publish.yml | 2 +- azure-pipelines.yml | 2 +- implement/Dockerfile | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-native-tools.yml b/.github/workflows/build-native-tools.yml index ad5c98aeb..72360d9ca 100644 --- a/.github/workflows/build-native-tools.yml +++ b/.github/workflows/build-native-tools.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/.github/workflows/publish-to-release.yml b/.github/workflows/publish-to-release.yml index 054bbdafb..2638c6a81 100644 --- a/.github/workflows/publish-to-release.yml +++ b/.github/workflows/publish-to-release.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index dd52db596..f820bdf0c 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0.306' + dotnet-version: '7.0.400' - name: Try use dotnet run: dotnet --info diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e7e715c32..e3dd22200 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,7 +11,7 @@ steps: - task: UseDotNet@2 inputs: packageType: 'sdk' # Options: runtime, sdk - version: '7.0.306' + version: '7.0.400' includePreviewVersions: true - script: dotnet --version diff --git a/implement/Dockerfile b/implement/Dockerfile index 9cbafd1f7..7c234e485 100644 --- a/implement/Dockerfile +++ b/implement/Dockerfile @@ -1,5 +1,5 @@ # Build dotnet build image -FROM mcr.microsoft.com/dotnet/sdk:7.0.306 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:7.0.400 AS build-env WORKDIR /app # Copy everything and build @@ -8,7 +8,7 @@ WORKDIR /app/elm-time RUN dotnet publish -c Debug -o out # Build runtime image -FROM mcr.microsoft.com/dotnet/aspnet:7.0.9 AS binaries +FROM mcr.microsoft.com/dotnet/aspnet:7.1.0 AS binaries COPY --from=build-env /app/elm-time/out /elm-time/dotnet/