This repository has been archived on 2025-01-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
traefik-certmanager/Dockerfile
Tom Neuber 3bd3f23482
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/deploy unknown status
fix(kubernetes): add kubernetes requirements
2025-01-05 00:26:56 +01:00

16 lines
437 B
Docker

FROM python:alpine
ENV PYTHONUNBUFFERED=1 \
ISSUER_NAME=letsencrypt \
ISSUER_KIND=ClusterIssuer \
CERT_CLEANUP=false \
PATCH_SECRETNAME=true
# As the k8s Python client does not yet support k8s 1.32, the updated client has been temporarily moved to the repo.
# So the installation is currently not needed.
# RUN pip install kubernetes
# COPY main.py /
RUN pip install -r kubernetes/requirements.txt
CMD python main.py