Skip to content

Commit 488c9e2

Browse files
chore(deps): update dotnet monorepo to v10
1 parent d83d1d9 commit 488c9e2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Executables/Auth/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine
22
COPY . /src
33
WORKDIR /src/Executables/Auth
44
RUN 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
77
COPY --from=0 /src/bin/core /app
88
WORKDIR /app
99
ENTRYPOINT ["/app/QuantumCore.Auth"]

src/Executables/Game/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine
22
COPY . /src
33
WORKDIR /src/Executables/Game
44
RUN 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
77
RUN apk add --no-cache icu-libs icu-data-full # install korean locale
88
COPY --from=0 /src/bin/core /app
99
WORKDIR /app

0 commit comments

Comments
 (0)