Skip to content

Commit 7bb0fc2

Browse files
authored
update: move to .NET 9 also in arm Dockerfile (#48)
1 parent 475bed7 commit 7bb0fc2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

TransitApi/Dockerfile.arm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
22
WORKDIR /app
33
EXPOSE 80
44
EXPOSE 443
55

6-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
77
WORKDIR /src
88
COPY ["TransitApi/TransitApi.csproj", "TransitApi/"]
99
RUN dotnet restore "TransitApi/TransitApi.csproj"

TransitWebViewer/Dockerfile.arm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
22
WORKDIR /app
33
EXPOSE 80
44
EXPOSE 443
55

6-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
77
WORKDIR /src
88
COPY ["TransitWebViewer/TransitWebViewer.csproj", "TransitWebViewer/"]
99
RUN dotnet restore "TransitWebViewer/TransitWebViewer.csproj"

0 commit comments

Comments
 (0)