infra/nginx/nginx-dev/Dockerfile
Egor Matveev 2970f41b5e fix
2025-06-02 01:10:38 +03:00

8 lines
207 B
Docker

FROM nginx
RUN apt-get update
RUN apt-get install certbot --yes
RUN apt-get install python3-certbot-nginx --yes
RUN pip3 install requests
COPY ./config /etc/nginx
COPY run.py run.py
CMD ["python3", "run.py"]