FROM certbot/certbot

# устанавливать cron отдельно не нужно он уже есть в этом image certbot/certbot

# Создаем директории для конфигов
RUN mkdir -p /etc/letsencrypt/config

# Копируем конфигурационные файлы
COPY scripts/ /opt/

# Устанавливаем права
<<<<<<< HEAD:certbot/Dockerfile
RUN chmod +x /opt/*
=======
RUN chmod +x /opt/init-certbot.sh
RUN chmod +x /opt/checkRenewCerts.sh
RUN chmod +x /opt/renewEasysite102.sh
RUN chmod +x /opt/renewValitovGazizCert.sh
RUN chmod +x /opt/renewYalarbaCert.sh

>>>>>>> divite_services:serv_certbot/certbot/Dockerfile

ENTRYPOINT ["/opt/init-certbot.sh"]
