modified: certbot/Dockerfile

change apt to apk for install crontab into image
This commit is contained in:
2025-07-20 01:38:41 +05:00
parent ceefb20769
commit 67ef797d04
+2 -2
View File
@@ -1,8 +1,8 @@
FROM certbot/certbot
# Обновляем репозитории и устанавливаем cron
RUN apt-get update && \
apt-get install -y cron
RUN apk update && \
apk add --no-cache cron
# Создаем директории для конфигов
RUN mkdir -p /etc/letsencrypt/config