Skip to content

Commit f2f9151

Browse files
committed
Upgrading to .NET 9
1 parent 1176fa4 commit f2f9151

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY eform-angular-frontend/eform-client ./
55
RUN yarn install
66
RUN npm run build
77

8-
FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS build-env
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim AS build-env
99
WORKDIR /app
1010
ARG GITVERSION
1111
ARG PLUGINVERSION
@@ -17,7 +17,7 @@ RUN dotnet publish eFormAPI.Web -o eFormAPI.Web/out /p:Version=$GITVERSION --run
1717
RUN dotnet publish ItemsPlanning.Pn -o ItemsPlanning.Pn/out /p:Version=$PLUGINVERSION --runtime linux-x64 --configuration Release
1818

1919
# Build runtime image
20-
FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim
20+
FROM mcr.microsoft.com/dotnet/aspnet:9.0-bookworm-slim
2121
WORKDIR /app
2222
COPY --from=build-env /app/eFormAPI.Web/out .
2323
RUN mkdir -p ./Plugins/ItemsPlanning.Pn

0 commit comments

Comments
 (0)