From 67ef797d0464e95125ae57d70477de3a874851fe Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sun, 20 Jul 2025 01:38:41 +0500 Subject: [PATCH] modified: certbot/Dockerfile change apt to apk for install crontab into image --- certbot/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot/Dockerfile b/certbot/Dockerfile index ee6bb54..0a23870 100644 --- a/certbot/Dockerfile +++ b/certbot/Dockerfile @@ -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