From 6101e03d967a44852f2cf18e0875f39966d93b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D1=80=D0=B3=D0=B5=D0=B9=20=D0=90=D0=BD=D1=82?= =?UTF-8?q?=D1=80=D0=BE=D0=BF=D0=BE=D0=B2?= Date: Sat, 25 Oct 2025 23:59:25 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20Dockerfile=20=D0=B4=D0=BB=D1=8F=20Debian=2010:?= =?UTF-8?q?=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9=D0=BA=D0=B0=20archiv?= =?UTF-8?q?e=20=D1=80=D0=B5=D0=BF=D0=BE=D0=B7=D0=B8=D1=82=D0=BE=D1=80?= =?UTF-8?q?=D0=B8=D0=B5=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dockerfiles/debian10/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dockerfiles/debian10/Dockerfile b/dockerfiles/debian10/Dockerfile index 4c9c29e..e12d4b3 100644 --- a/dockerfiles/debian10/Dockerfile +++ b/dockerfiles/debian10/Dockerfile @@ -8,6 +8,12 @@ FROM debian:10 ENV DEBIAN_FRONTEND=noninteractive ENV TZ=UTC +# Настраиваем archive репозитории для Debian 10 (так как основные репозитории больше не поддерживаются) +RUN sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g' /etc/apt/sources.list && \ + sed -i 's|http://security.debian.org/debian-security|http://archive.debian.org/debian-security|g' /etc/apt/sources.list && \ + echo "deb http://archive.debian.org/debian buster main" > /etc/apt/sources.list && \ + echo "deb http://archive.debian.org/debian-security buster/updates main" >> /etc/apt/sources.list + # Обновляем систему RUN apt-get update && apt-get dist-upgrade -y