Skip to content

Commit

Permalink
Update dotnet monorepo to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 14, 2023
1 parent 9952164 commit 0f8557b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Source/ApiTemplate/Source/ApiTemplate/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

# SDK image used to build and publish the application
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS sdk
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS sdk
# To use the debug build configuration pass --build-arg Configuration=Debug
ARG Configuration=Release
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \
Expand Down
4 changes: 2 additions & 2 deletions Source/GraphQLTemplate/Source/GraphQLTemplate/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

# SDK image used to build and publish the application
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS sdk
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS sdk
# To use the debug build configuration pass --build-arg Configuration=Debug
ARG Configuration=Release
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

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

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

0 comments on commit 0f8557b

Please sign in to comment.