Updated docker file

This commit is contained in:
2025-07-03 22:15:16 -04:00
parent cf55a7d47b
commit 201de5796e

View File

@@ -57,5 +57,6 @@ RUN dotnet publish "./AobaServer.csproj" -c $BUILD_CONFIGURATION -o /app/publish
FROM base AS final FROM base AS final
WORKDIR /app WORKDIR /app
COPY --from=publish /app/publish . 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"] ENTRYPOINT ["dotnet", "AobaServer.dll"]