From a90c75bccaf39a4908b044330518e87d9e0685b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=91=D0=B0?= =?UTF-8?q?=D0=B4=D1=8F=D0=B5=D0=B2?= Date: Mon, 7 Apr 2025 20:13:55 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BF=D0=B0=D1=80=D0=B0=D0=BC=D0=B5=D1=82=D1=80=20--a?= =?UTF-8?q?llow-unauthenticated=20=D0=B2=20=D0=BA=D0=BE=D0=BC=D0=B0=D0=BD?= =?UTF-8?q?=D0=B4=D1=83=20apt-get=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dockerfiles/base.dockerfile | 4 ++-- dockerfiles/doc.dockerfile | 5 +++-- dockerfiles/python.dockerfile | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/dockerfiles/base.dockerfile b/dockerfiles/base.dockerfile index 69915db..c60950e 100644 --- a/dockerfiles/base.dockerfile +++ b/dockerfiles/base.dockerfile @@ -19,6 +19,6 @@ LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.description="MouseSoft docker images used by act_runner to run workflows." RUN apt-get update --allow-insecure-repositories && \ - apt-get install -y build-essential debhelper dh-exec dpkg-dev dput-ng \ - fakeroot gawk locales sed && \ + apt-get install -y --allow-unauthenticated build-essential debhelper dh-exec \ + dpkg-dev dput-ng fakeroot gawk locales sed && \ rm -rf /var/lib/apt/lists/* diff --git a/dockerfiles/doc.dockerfile b/dockerfiles/doc.dockerfile index fe573fe..6cea11f 100644 --- a/dockerfiles/doc.dockerfile +++ b/dockerfiles/doc.dockerfile @@ -32,8 +32,9 @@ RUN apt-get update --allow-insecure-repositories && \ COPY etc /etc RUN apt-get update --allow-insecure-repositories && \ - apt-get install -y asciidoctor curl graphviz libgbm1 libgtk-3-0 libnotify4 \ - libsecret-1-0 libxss1 locales make plantuml rubygems xdg-utils xvfb xz-utils && \ + apt-get install -y --allow-unauthenticated asciidoctor curl graphviz libgbm1 \ + libgtk-3-0 libnotify4 libsecret-1-0 libxss1 locales make plantuml rubygems \ + xdg-utils xvfb xz-utils && \ gem install asciidoctor-diagram && \ gem install asciidoctor-pdf && \ gem install rouge && \ diff --git a/dockerfiles/python.dockerfile b/dockerfiles/python.dockerfile index 4566f1b..1bf063b 100644 --- a/dockerfiles/python.dockerfile +++ b/dockerfiles/python.dockerfile @@ -19,5 +19,6 @@ LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.description="MouseSoft docker images used by act_runner to run workflows." RUN apt-get update --allow-insecure-repositories && \ - apt-get install -y dh-python libvirt-dev python3-all python3-dev python3-setuptools && \ + apt-get install -y --allow-unauthenticated dh-python libvirt-dev python3-all \ + python3-dev python3-setuptools && \ rm -rf /var/lib/apt/lists/*