2023-11-13 22:08:27 -06:00
|
|
|
FROM python:3.12-alpine
|
|
|
|
WORKDIR /etc/nginx
|
2023-11-14 09:05:11 -06:00
|
|
|
RUN pip install certbot certbot-nginx --no-cache-dir
|
|
|
|
RUN apk add nginx --no-cache
|
2023-11-13 22:08:27 -06:00
|
|
|
COPY run.sh /root
|
2023-11-14 08:07:46 -06:00
|
|
|
CMD ["/root/run.sh"]
|