Skip to content

Commit 4f1b56a

Browse files
authored
bump to net9 (#119)
* docker file net 9 * workflow bump
1 parent 2918156 commit 4f1b56a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup .NET
2727
uses: actions/setup-dotnet@v1
2828
with:
29-
dotnet-version: 8.x
29+
dotnet-version: 9.x
3030

3131
- name: Restore Dependencies
3232
run: dotnet restore
@@ -101,7 +101,7 @@ jobs:
101101
- name: Setup Buildx
102102
uses: actions/setup-dotnet@v1
103103
with:
104-
dotnet-version: '8.x'
104+
dotnet-version: '9.x'
105105
include-prerelease: true
106106

107107
- name: Build Artifact

OpenAlprWebhookProcessor.Server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
44
USER app
55
WORKDIR /app
66
EXPOSE 8080
77

8-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
99
ARG BUILD_CONFIGURATION=Release
1010
WORKDIR /src
1111

0 commit comments

Comments
 (0)