fix ssl error?

This commit is contained in:
Lillith Fox 2025-01-10 14:18:23 -05:00
parent 03628aa2e5
commit c98a16439f

View file

@ -16,6 +16,7 @@ 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
COPY --from=mcr.microsoft.com/dotnet/aspnet:7.0 /etc/ssl/openssl.cnf /etc/ssl/openssl.cnf
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "VRCAuthProxy.dll"]