File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:9 .0-alpine
1+ FROM mcr.microsoft.com/dotnet/sdk:10 .0-alpine
22COPY . /src
33WORKDIR /src/Executables/Auth
44RUN dotnet publish -c Release -o /src/bin/core -r linux-musl-x64 --no-self-contained -p:PublishSingleFile=true -p:PublishReadyToRun=true
55
6- FROM mcr.microsoft.com/dotnet/aspnet:9 .0-alpine
6+ FROM mcr.microsoft.com/dotnet/aspnet:10 .0-alpine
77COPY --from=0 /src/bin/core /app
88WORKDIR /app
99ENTRYPOINT ["/app/QuantumCore.Auth" ]
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:9 .0-alpine
1+ FROM mcr.microsoft.com/dotnet/sdk:10 .0-alpine
22COPY . /src
33WORKDIR /src/Executables/Game
44RUN dotnet publish -c Release -o /src/bin/core -r linux-musl-x64 --no-self-contained -p:PublishSingleFile=true -p:PublishReadyToRun=true
55
6- FROM mcr.microsoft.com/dotnet/runtime:9 .0-alpine
6+ FROM mcr.microsoft.com/dotnet/runtime:10 .0-alpine
77RUN apk add --no-cache icu-libs icu-data-full # install korean locale
88COPY --from=0 /src/bin/core /app
99WORKDIR /app
You can’t perform that action at this time.
0 commit comments