We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 513a458 commit 069eb71Copy full SHA for 069eb71
1 file changed
appviewlite/Dockerfile
@@ -1,12 +1,12 @@
1
-FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
+FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
2
3
RUN mkdir /src /app
4
5
WORKDIR /src
6
COPY ./AppViewLite .
7
RUN dotnet publish src/AppViewLite.Web -c Release -o /app/publish
8
9
-FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine
+FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine
10
11
RUN apk add --no-cache \
12
git
@@ -25,4 +25,4 @@ ENV APPVIEWLITE_BIND_URLS=http://+:8080
25
ENV APPVIEWLITE_ALLOW_NEW_DATABASE=1
26
EXPOSE 8080
27
28
-ENTRYPOINT ["dotnet", "AppViewLite.Web.dll"]
+ENTRYPOINT ["dotnet", "AppViewLite.Web.dll"]
0 commit comments