All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Test Pull Request / Build Image (pull_request) Successful in 1m24s
Test Pull Request / Notify (pull_request) Successful in 4s
Build Main Image / Build Image (push) Successful in 1m4s
Build Main Image / Notify (push) Successful in 5s
13 lines
280 B
Docker
13 lines
280 B
Docker
FROM python:3.13.1-alpine3.19
|
|
|
|
RUN apk add curl
|
|
|
|
ENV ISSUER_URL=
|
|
|
|
EXPOSE 8000
|
|
|
|
COPY webfinger.py /webfinger.py
|
|
|
|
HEALTHCHECK --interval=30s --timeout=15s --start-period=30s --retries=3 CMD curl -f http://localhost:8000/healthcheck || exit 1
|
|
|
|
CMD [ "python", "-u", "/webfinger.py" ] |