From fc0ce6629ae4f1a34423e56c17a4d7c37af5cdd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enes=20Sad=C4=B1k=20=C3=96zbek?= Date: Sat, 2 Nov 2019 20:13:17 +0300 Subject: [PATCH] Health Check port fix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb97c8e..e296b1a 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 +HEALTHCHECK CMD curl --fail http://localhost:80/health || exit 1 ENTRYPOINT ["dotnet", "SteamOpenIdConnectProvider.dll"] \ No newline at end of file