6 lines
144 B
Text
6 lines
144 B
Text
|
FROM python:3.12-alpine
|
||
|
WORKDIR /etc/nginx
|
||
|
RUN pip install certbot certbot-nginx
|
||
|
RUN apk add nginx
|
||
|
COPY run.sh /root
|
||
|
ENTRYPOINT ["/root/run.sh"]
|