infra/nginx/nginx-dev/Dockerfile
Egor Matveev 1bd251e4d8
All checks were successful
Deploy Dev / Build (pull_request) Successful in 5s
Deploy Dev / Push (pull_request) Successful in 10s
Deploy Dev / prepare (pull_request) Successful in 3s
Deploy Dev / Deploy dev (pull_request) Successful in 15s
fix
2025-06-02 02:39:18 +03:00

10 lines
295 B
Docker

FROM nginx
RUN apt-get update
RUN apt-get install certbot --yes
RUN apt-get install python3-certbot-nginx python3-pip --yes
RUN pip3 install --break-system-packages requests minio
COPY ./config /etc/nginx
COPY prepare.py prepare.py
COPY run.sh run.sh
ENV PYTHONUNBUFFERED=1
ENTRYPOINT ["run.sh"]