From 8ed663e8030862e3f0d118850bb3af41721b3d26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enes=20Sad=C4=B1k=20=C3=96zbek?= Date: Sun, 13 Oct 2019 19:05:15 +0300 Subject: [PATCH] Fix wrong health check port --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb97c8e..55b1134 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,5 +12,5 @@ RUN dotnet publish "SteamOpenIdConnectProvider.csproj" -c Release -o /app FROM mcr.microsoft.com/dotnet/core/aspnet:3.0 AS base WORKDIR /app COPY --from=publish /app . -HEALTHCHECK CMD curl --fail http://localhost:5000/health || exit 1 -ENTRYPOINT ["dotnet", "SteamOpenIdConnectProvider.dll"] \ No newline at end of file +HEALTHCHECK CMD curl --fail http://localhost:80/health || exit 1 +ENTRYPOINT ["dotnet", "SteamOpenIdConnectProvider.dll"]