Removed Https from dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Xander Sigler 2023-12-05 23:18:56 -08:00
parent 4f90a7d0f1
commit 2df4382b76

View File

@ -13,6 +13,6 @@ FROM mcr.microsoft.com/dotnet/aspnet:5.0
WORKDIR /app
COPY --from=build-env /app/out .
ENV ASPNETCORE_ENVIRONMENT=Production
ENV ASPNETCORE_URLS=https://+:443;http://+:80
ENV ASPNETCORE_URLS=http://+:80
ENTRYPOINT ["dotnet", "AdventOfCode.dll"]