From cc6c59514301bad50f50d9af57f38b0b6b7a3d55 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Mon, 6 Apr 2026 13:12:08 +0200 Subject: [PATCH] fix: broken dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc413f1..b2384b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /App COPY . ./ -RUN dotnet restore +RUN dotnet restore Platforms/Server RUN dotnet publish Platforms/Server -c Release -r linux-musl-x64 --self-contained true -o out FROM alpine:latest @@ -13,4 +13,4 @@ COPY --from=build /App/out . RUN apk add --no-cache icu-libs -ENTRYPOINT ["./Server"] +ENTRYPOINT ["./MyUniverse"]