add curl to container

This commit is contained in:
Lillith 2025-02-26 13:15:18 -05:00 committed by GitHub
parent 7152c90d96
commit 23371e7fee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,8 @@ ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "VRCAuthProxy.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
RUN apt update && \
apt install -y curl
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "VRCAuthProxy.dll"]