From 201de5796e30d9a0073dd1a249c29ba4f537422f Mon Sep 17 00:00:00 2001 From: Amatsugu Date: Thu, 3 Jul 2025 22:15:16 -0400 Subject: [PATCH] Updated docker file --- AobaServer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AobaServer/Dockerfile b/AobaServer/Dockerfile index 474de05..68ad00e 100644 --- a/AobaServer/Dockerfile +++ b/AobaServer/Dockerfile @@ -57,5 +57,6 @@ RUN dotnet publish "./AobaServer.csproj" -c $BUILD_CONFIGURATION -o /app/publish FROM base AS final WORKDIR /app COPY --from=publish /app/publish . -RUN sudo apt-get install -y ffmpeg libgdiplus +# RUN apt update +# RUN apt install -y ffmpeg libgdiplus ENTRYPOINT ["dotnet", "AobaServer.dll"]