diff --git a/AdventOfCode/Dockerfile b/AdventOfCode/Dockerfile index cd2097c..b1dadda 100644 --- a/AdventOfCode/Dockerfile +++ b/AdventOfCode/Dockerfile @@ -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=http://+:80 +ENV ASPNETCORE_URLS=http://+:80;https://+:443 ENTRYPOINT ["dotnet", "AdventOfCode.dll"]