Skip to content

Commit 0f8557b

Browse files
Update dotnet monorepo to v8
1 parent 9952164 commit 0f8557b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Source/ApiTemplate/Source/ApiTemplate/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Base image used by Visual Studio at development time
77
# (See https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties)
8-
FROM mcr.microsoft.com/dotnet/aspnet:7.0-alpine AS base
8+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
99
# Open Container Initiative (OCI) labels (See https://github.com/opencontainers/image-spec/blob/master/annotations.md).
1010
LABEL org.opencontainers.image.title="PROJECT-TITLE" \
1111
org.opencontainers.image.description="PROJECT-DESCRIPTION" \
@@ -34,7 +34,7 @@ EXPOSE 80 443
3434
#endif
3535

3636
# SDK image used to build and publish the application
37-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS sdk
37+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS sdk
3838
# To use the debug build configuration pass --build-arg Configuration=Debug
3939
ARG Configuration=Release
4040
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \

Source/GraphQLTemplate/Source/GraphQLTemplate/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Base image used by Visual Studio at development time
77
# (See https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties)
8-
FROM mcr.microsoft.com/dotnet/aspnet:7.0-alpine AS base
8+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
99
# Open Container Initiative (OCI) labels (See https://github.com/opencontainers/image-spec/blob/master/annotations.md).
1010
LABEL org.opencontainers.image.title="PROJECT-TITLE" \
1111
org.opencontainers.image.description="PROJECT-DESCRIPTION" \
@@ -34,7 +34,7 @@ EXPOSE 80 443
3434
#endif
3535

3636
# SDK image used to build and publish the application
37-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS sdk
37+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS sdk
3838
# To use the debug build configuration pass --build-arg Configuration=Debug
3939
ARG Configuration=Release
4040
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \

Source/OrleansTemplate/Source/OrleansTemplate.Server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Base image used by Visual Studio at development time
77
# (See https://docs.microsoft.com/en-us/visualstudio/containers/container-msbuild-properties)
8-
FROM mcr.microsoft.com/dotnet/aspnet:7.0-alpine AS base
8+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
99
# Open Container Initiative (OCI) labels (See https://github.com/opencontainers/image-spec/blob/master/annotations.md).
1010
LABEL org.opencontainers.image.title="PROJECT-TITLE" \
1111
org.opencontainers.image.description="PROJECT-DESCRIPTION" \
@@ -30,7 +30,7 @@ WORKDIR /app
3030
EXPOSE 80 11111 30000
3131

3232
# SDK image used to build and publish the application
33-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS sdk
33+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS sdk
3434
# To use the debug build configuration pass --build-arg Configuration=Debug
3535
ARG Configuration=Release
3636
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \

0 commit comments

Comments
 (0)