2
0

Добавлен параметр --allow-unauthenticated в команду apt-get install
Some checks failed
release / release (push) Failing after 56m34s

This commit is contained in:
Алексей Бадяев 2025-04-07 20:13:55 +07:00
parent eb5d414e8a
commit a90c75bcca
Signed by: alexey
GPG Key ID: 686FBC1363E4AFAE
3 changed files with 7 additions and 5 deletions

View File

@ -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." org.opencontainers.image.description="MouseSoft docker images used by act_runner to run workflows."
RUN apt-get update --allow-insecure-repositories && \ RUN apt-get update --allow-insecure-repositories && \
apt-get install -y build-essential debhelper dh-exec dpkg-dev dput-ng \ apt-get install -y --allow-unauthenticated build-essential debhelper dh-exec \
fakeroot gawk locales sed && \ dpkg-dev dput-ng fakeroot gawk locales sed && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*

View File

@ -32,8 +32,9 @@ RUN apt-get update --allow-insecure-repositories && \
COPY etc /etc COPY etc /etc
RUN apt-get update --allow-insecure-repositories && \ RUN apt-get update --allow-insecure-repositories && \
apt-get install -y asciidoctor curl graphviz libgbm1 libgtk-3-0 libnotify4 \ apt-get install -y --allow-unauthenticated asciidoctor curl graphviz libgbm1 \
libsecret-1-0 libxss1 locales make plantuml rubygems xdg-utils xvfb xz-utils && \ libgtk-3-0 libnotify4 libsecret-1-0 libxss1 locales make plantuml rubygems \
xdg-utils xvfb xz-utils && \
gem install asciidoctor-diagram && \ gem install asciidoctor-diagram && \
gem install asciidoctor-pdf && \ gem install asciidoctor-pdf && \
gem install rouge && \ gem install rouge && \

View File

@ -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." org.opencontainers.image.description="MouseSoft docker images used by act_runner to run workflows."
RUN apt-get update --allow-insecure-repositories && \ 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/* rm -rf /var/lib/apt/lists/*