infra/nginx/nginx-dev/Dockerfile
Egor Matveev a4b4bfbaeb
Some checks failed
Deploy Dev / Build (pull_request) Failing after 9s
Deploy Dev / Push (pull_request) Has been skipped
Deploy Dev / prepare (pull_request) Has been skipped
Deploy Dev / Deploy dev (pull_request) Has been skipped
fix
2025-06-02 01:35:47 +03:00

9 lines
229 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 minio
COPY ./config /etc/nginx
COPY prepare.py prepare.py
COPY run.sh run.sh
CMD ["run.sh"]