mirror of https://github.com/dapr/quickstarts.git
Merge pull request #1239 from MyMirelHub/fix/dotnet-version-bump-docker
Update Dockerfile to use .NET SDK and runtime version 8.0
This commit is contained in:
commit
6d7cb06be5
|
|
@ -1,5 +1,5 @@
|
||||||
# Use the official .NET 7 SDK image to build the application
|
# Use the official .NET 7 SDK image to build the application
|
||||||
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:7.0 AS build
|
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy the project file and restore dependencies
|
# Copy the project file and restore dependencies
|
||||||
|
|
@ -12,7 +12,7 @@ COPY . ./
|
||||||
RUN dotnet publish -c Release -o out
|
RUN dotnet publish -c Release -o out
|
||||||
|
|
||||||
# Use the official .NET 7 runtime image to run the application
|
# Use the official .NET 7 runtime image to run the application
|
||||||
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/aspnet:7.0 AS runtime
|
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=build /app/out .
|
COPY --from=build /app/out .
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue