We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c77c10a commit ee47a34Copy full SHA for ee47a34
Dockerfile
@@ -8,7 +8,7 @@ RUN npm ci
8
COPY fluidsignalr/ClientApp/src /js/src
9
RUN npm run build
10
11
-FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
12
WORKDIR /app
13
14
# copy csproj and restore as distinct layers
@@ -28,7 +28,7 @@ RUN dotnet publish -c Release -o out
28
###
29
### Final runtime image
30
31
-FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
+FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS runtime
32
33
COPY --from=build /app/fluidsignalr/out ./
34
EXPOSE 5000
0 commit comments