mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-09 18:06:22 +00:00
Fix wrong health check port
This commit is contained in:
parent
0e1b5cc469
commit
8ed663e803
1 changed files with 2 additions and 2 deletions
|
@ -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"]
|
||||
HEALTHCHECK CMD curl --fail http://localhost:80/health || exit 1
|
||||
ENTRYPOINT ["dotnet", "SteamOpenIdConnectProvider.dll"]
|
||||
|
|
Loading…
Reference in a new issue