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
2022-10-09 16:18:29 -05:00

10 lines
193 B
Docker

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