pywebfinger/Dockerfile
Renovate Bot e418e1fec4
Some checks failed
Test Pull Request / Build Image (pull_request) Failing after 22s
Test Pull Request / Notify (pull_request) Has been skipped
Update python Docker tag to v3.13.0b4
2024-07-19 19:00:24 +00:00

13 lines
282 B
Docker

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