mirror of
https://github.com/byo-software/steam-openid-connect-provider.git
synced 2025-01-09 18:06:22 +00:00
Merge pull request #5 from neothor/bugfix/docker-image-has-no-curl-for-healtcheck
Added curl
This commit is contained in:
commit
376c788b2b
1 changed files with 4 additions and 0 deletions
|
@ -14,6 +14,10 @@ FROM build AS publish
|
||||||
RUN dotnet publish ./SteamOpenIdConnectProvider.csproj -c Release -o /app
|
RUN dotnet publish ./SteamOpenIdConnectProvider.csproj -c Release -o /app
|
||||||
|
|
||||||
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
FROM mcr.microsoft.com/dotnet/aspnet:5.0
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y curl
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=publish /app .
|
COPY --from=publish /app .
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
Loading…
Reference in a new issue