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 caf2a7b commit 6620da0Copy full SHA for 6620da0
Dockerfile
@@ -2,7 +2,7 @@
2
#
3
# SPDX-License-Identifier: MIT
4
5
-FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
+FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env
6
7
# Install Node.js 18
8
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
@@ -27,7 +27,7 @@ COPY . ./
27
RUN dotnet build Emulsion.MessageArchive.Frontend # required to publish the frontend resources
28
RUN dotnet publish Emulsion -c Release -o /app/out
29
30
-FROM mcr.microsoft.com/dotnet/aspnet:9.0
+FROM mcr.microsoft.com/dotnet/aspnet:10.0
31
WORKDIR /app
32
COPY --from=build-env /app/out .
33
ENTRYPOINT ["dotnet", "Emulsion.dll"]
0 commit comments