pywebfinger/Dockerfile
Renovate Bot 1ba33ac7bb
All checks were successful
Test Pull Request / Build Image (pull_request) Successful in 16s
Test Pull Request / Notify (pull_request) Successful in 3s
Build Main Image / Build Image (push) Successful in 26s
Build Main Image / Notify (push) Successful in 3s
Update python Docker tag to v3.13.0b2
2024-06-06 23:00:28 +00:00

13 lines
282 B
Docker

FROM python:3.13.0b2-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" ]