diff --git a/.drone.yml b/.drone.yml index a12b793..6936922 100644 --- a/.drone.yml +++ b/.drone.yml @@ -43,4 +43,4 @@ steps: commands: - echo 'Finished container registry push for Advent of Code' depends_on: - - build-advent-of-code \ No newline at end of file + - deploy-containers \ No newline at end of file diff --git a/AdventOfCode/Dockerfile b/AdventOfCode/Dockerfile index b1dadda..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=http://+:80;https://+:443 +ENV ASPNETCORE_URLS=http://+:80 ENTRYPOINT ["dotnet", "AdventOfCode.dll"]