This repository has been archived on 2025-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
traefik-certmanager/Dockerfile
2023-11-21 23:33:00 -06:00

11 lines
221 B
Docker

FROM python:alpine
ENV PYTHONUNBUFFERED=1 \
ISSUER_NAME=letsencrypt \
ISSUER_KIND=ClusterIssuer \
CERT_CLEANUP=false \
PATCH_SECRETNAME=true
RUN pip install kubernetes
COPY main.py /
CMD python /main.py