docker-certbot-nginx/Dockerfile

14 lines
324 B
Text
Raw Permalink Normal View History

2025-02-18 22:57:34 +04:00
FROM alpine:latest
RUN apk add --no-cache nginx python3 py3-virtualenv
RUN python3 -m venv /venv
2025-02-19 15:49:30 +04:00
RUN /venv/bin/pip install certbot certbot-nginx
ENV PATH="/venv/bin:$PATH"
2025-02-18 22:57:34 +04:00
2025-02-19 15:49:30 +04:00
RUN /venv/bin/pip cache purge && /venv/bin/pip uninstall -y pip
2025-02-18 22:57:34 +04:00
RUN apk del py3-virtualenv && rm -rf /var/cache/apk
2025-02-19 13:21:25 +04:00
COPY ./run.sh /
CMD ["/run.sh"]