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