From 17e9ad048a207ee82679167b2c71643d1cb55a13 Mon Sep 17 00:00:00 2001 From: Jan Kotanski Date: Mon, 8 Jun 2026 11:52:32 +0100 Subject: [PATCH] add retry to curl command --- .ci/debian10_py2/Dockerfile | 4 ++-- .ci/debian10_py3/Dockerfile | 4 ++-- .ci/debian11_py3/Dockerfile | 4 ++-- .ci/debian12_py3/Dockerfile | 6 +++--- .ci/debian13_py3/Dockerfile | 6 +++--- .ci/debian8_py2/Dockerfile | 4 ++-- .ci/debian8_py3/Dockerfile | 4 ++-- .ci/debian9_py2/Dockerfile | 4 ++-- .ci/debian9_py3/Dockerfile | 4 ++-- .ci/ubuntu16.04_py2/Dockerfile | 4 ++-- .ci/ubuntu16.04_py3/Dockerfile | 4 ++-- .ci/ubuntu18.04_py2/Dockerfile | 4 ++-- .ci/ubuntu18.04_py3/Dockerfile | 4 ++-- .ci/ubuntu18.10_py2/Dockerfile | 4 ++-- .ci/ubuntu18.10_py3/Dockerfile | 4 ++-- .ci/ubuntu19.10_py2/Dockerfile | 4 ++-- .ci/ubuntu19.10_py3/Dockerfile | 4 ++-- .ci/ubuntu20.04_py3/Dockerfile | 4 ++-- .ci/ubuntu20.10_py3/Dockerfile | 4 ++-- .ci/ubuntu21.04_py3/Dockerfile | 4 ++-- .ci/ubuntu21.10_py3/Dockerfile | 4 ++-- .ci/ubuntu22.04_py3/Dockerfile | 4 ++-- .ci/ubuntu22.10_py3/Dockerfile | 4 ++-- .ci/ubuntu23.04_py3/Dockerfile | 4 ++-- .ci/ubuntu23.10_py3/Dockerfile | 4 ++-- .ci/ubuntu24.04_py3/Dockerfile | 4 ++-- .ci/ubuntu24.10_py3/Dockerfile | 4 ++-- .ci/ubuntu25.04_py3/Dockerfile | 4 ++-- .ci/ubuntu25.10_py3/Dockerfile | 4 ++-- .ci/ubuntu26.04_py3/Dockerfile | 4 ++-- 30 files changed, 62 insertions(+), 62 deletions(-) diff --git a/.ci/debian10_py2/Dockerfile b/.ci/debian10_py2/Dockerfile index d7d7968c..d0c23973 100644 --- a/.ci/debian10_py2/Dockerfile +++ b/.ci/debian10_py2/Dockerfile @@ -10,9 +10,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian buster main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian buster main" -y RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.3.0-dev libpninexus3.3.0 libh5cpp0.7.1-dev libh5cpp0.7.1 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py hdf5-plugin-bshuf hdf5-plugin-bz2 hdf5-plugin-lz4 python-pytest git cmake doxygen python-sphinx libboost-all-dev diff --git a/.ci/debian10_py3/Dockerfile b/.ci/debian10_py3/Dockerfile index bbb456a3..e17a9c4c 100644 --- a/.ci/debian10_py3/Dockerfile +++ b/.ci/debian10_py3/Dockerfile @@ -10,9 +10,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian buster main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian buster main" -y RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.3.0-dev libpninexus3.3.0 libh5cpp0.7.1-dev libh5cpp0.7.1 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py hdf5-plugin-bshuf hdf5-plugin-bz2 hdf5-plugin-lz4 python3-pytest git cmake doxygen python3-sphinx libboost-all-dev diff --git a/.ci/debian11_py3/Dockerfile b/.ci/debian11_py3/Dockerfile index 1798497a..2229e83b 100644 --- a/.ci/debian11_py3/Dockerfile +++ b/.ci/debian11_py3/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian bullseye main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian bullseye main" -y # RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get install -y libpninexus3.4.0-dev libpninexus3.4.0 libh5cpp0.8.0-dev libh5cpp0.8.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py hdf5-plugin-bshuf hdf5-plugin-bz2 hdf5-plugin-lz4 git python3-pytest cmake doxygen python3-sphinx libboost-all-dev diff --git a/.ci/debian12_py3/Dockerfile b/.ci/debian12_py3/Dockerfile index 967950d4..3224d424 100644 --- a/.ci/debian12_py3/Dockerfile +++ b/.ci/debian12_py3/Dockerfile @@ -7,10 +7,10 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -# RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian bookworm main" -y -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/bookworm-pni-hdri.list +# RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian bookworm main" -y +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/bookworm-pni-hdri.list RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get install -y libpninexus3.4.0-dev libpninexus3.4.0 libh5cpp0.8.0-dev libh5cpp0.8.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py git python3-pytest cmake doxygen python3-sphinx libboost-all-dev hdf5-filter-plugin hdf5-plugin-bshuf diff --git a/.ci/debian13_py3/Dockerfile b/.ci/debian13_py3/Dockerfile index 5b94aac3..32ac6ab3 100644 --- a/.ci/debian13_py3/Dockerfile +++ b/.ci/debian13_py3/Dockerfile @@ -7,10 +7,10 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -# RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian trixie main" -y -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/trixie-pni-hdri.list +# RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian trixie main" -y +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/trixie-pni-hdri.list RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get install -y libpninexus3.4.0-dev libpninexus3.4.0 libh5cpp0.8.0-dev libh5cpp0.8.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev cython3 python3-setuptools libboost-python-dev python3-numpy-dev g++ python3-h5py git python3-pytest cmake doxygen python3-sphinx libboost-all-dev hdf5-filter-plugin bitshuffle diff --git a/.ci/debian8_py2/Dockerfile b/.ci/debian8_py2/Dockerfile index 36f23160..adfc0bee 100644 --- a/.ci/debian8_py2/Dockerfile +++ b/.ci/debian8_py2/Dockerfile @@ -4,8 +4,8 @@ MAINTAINER DESY, Jan Kotanski RUN sed -i '/jessie-updates/d' /etc/apt/sources.list RUN apt-get -qq update && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian jessie main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian jessie main" -y RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf RUN apt-get -qq update && apt-get -qq -y dist-upgrade diff --git a/.ci/debian8_py3/Dockerfile b/.ci/debian8_py3/Dockerfile index fa3edcac..15ee2453 100644 --- a/.ci/debian8_py3/Dockerfile +++ b/.ci/debian8_py3/Dockerfile @@ -4,8 +4,8 @@ MAINTAINER DESY, Jan Kotanski RUN sed -i '/jessie-updates/d' /etc/apt/sources.list RUN apt-get -qq update && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian jessie main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian jessie main" -y RUN add-apt-repository "deb http://archive.debian.org/debian jessie-backports main non-free" -y RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf diff --git a/.ci/debian9_py2/Dockerfile b/.ci/debian9_py2/Dockerfile index d26e11dd..1414e1c4 100644 --- a/.ci/debian9_py2/Dockerfile +++ b/.ci/debian9_py2/Dockerfile @@ -3,8 +3,8 @@ FROM debian:stretch MAINTAINER DESY, Jan Kotanski RUN /bin/bash -c 'echo "deb http://ftp.de.debian.org/debian stretch main" > /etc/apt/sources.list.d/debian9de.list' RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps apt-utils curl apt-transport-https gnupg2 ca-certificates -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian stretch main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian stretch main" -y RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.1.0-dev libpninexus3.1.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py hdf5-plugin-bshuf hdf5-plugin-bz2 hdf5-plugin-lz4 python-pytest diff --git a/.ci/debian9_py3/Dockerfile b/.ci/debian9_py3/Dockerfile index 8682723b..44dc5063 100644 --- a/.ci/debian9_py3/Dockerfile +++ b/.ci/debian9_py3/Dockerfile @@ -3,8 +3,8 @@ FROM debian:stretch MAINTAINER DESY, Jan Kotanski RUN /bin/bash -c 'echo "deb http://ftp.de.debian.org/debian stretch main" > /etc/apt/sources.list.d/debian9de.list' RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps apt-utils curl apt-transport-https gnupg2 ca-certificates -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian stretch main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian stretch main" -y RUN apt-get -qq update && apt-get -qq -y dist-upgrade RUN apt-get -qq update && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.1.0-dev libpninexus3.1.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py hdf5-plugin-bshuf hdf5-plugin-bz2 hdf5-plugin-lz4 git python3-pytest diff --git a/.ci/ubuntu16.04_py2/Dockerfile b/.ci/ubuntu16.04_py2/Dockerfile index 708a4b7a..588262eb 100644 --- a/.ci/ubuntu16.04_py2/Dockerfile +++ b/.ci/ubuntu16.04_py2/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:16.04 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian xenial main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian xenial main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.1.0-dev libh5cpp0.1.0 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py diff --git a/.ci/ubuntu16.04_py3/Dockerfile b/.ci/ubuntu16.04_py3/Dockerfile index 31151877..a924297a 100644 --- a/.ci/ubuntu16.04_py3/Dockerfile +++ b/.ci/ubuntu16.04_py3/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:16.04 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian xenial main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian xenial main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.1.0-dev libh5cpp0.1.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu18.04_py2/Dockerfile b/.ci/ubuntu18.04_py2/Dockerfile index aa480d74..3073682b 100644 --- a/.ci/ubuntu18.04_py2/Dockerfile +++ b/.ci/ubuntu18.04_py2/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:18.04 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian bionic main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian bionic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.1.0-dev libpninexus3.1.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py python-pytest diff --git a/.ci/ubuntu18.04_py3/Dockerfile b/.ci/ubuntu18.04_py3/Dockerfile index fcc71c03..e6e4c8bd 100644 --- a/.ci/ubuntu18.04_py3/Dockerfile +++ b/.ci/ubuntu18.04_py3/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:18.04 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian bionic main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian bionic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.1.0-dev libpninexus3.1.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py python3-pytest diff --git a/.ci/ubuntu18.10_py2/Dockerfile b/.ci/ubuntu18.10_py2/Dockerfile index 887ae0fd..dc82bef0 100644 --- a/.ci/ubuntu18.10_py2/Dockerfile +++ b/.ci/ubuntu18.10_py2/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:18.10 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian cosmic main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian cosmic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.1.0-dev libh5cpp0.1.0 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py diff --git a/.ci/ubuntu18.10_py3/Dockerfile b/.ci/ubuntu18.10_py3/Dockerfile index f26434a7..5845afd9 100644 --- a/.ci/ubuntu18.10_py3/Dockerfile +++ b/.ci/ubuntu18.10_py3/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:18.10 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian cosmic main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian cosmic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.0.0-dev libpninexus3.0.0 libh5cpp0.1.0-dev libh5cpp0.1.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu19.10_py2/Dockerfile b/.ci/ubuntu19.10_py2/Dockerfile index 0e0d0096..6bd07386 100644 --- a/.ci/ubuntu19.10_py2/Dockerfile +++ b/.ci/ubuntu19.10_py2/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:19.10 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian eoan main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian eoan main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.3.3-dev libh5cpp0.3.3 python-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython python-setuptools libboost-python-dev python-numpy-abi9 g++ python-h5py diff --git a/.ci/ubuntu19.10_py3/Dockerfile b/.ci/ubuntu19.10_py3/Dockerfile index 81247d2b..44f2e3b3 100644 --- a/.ci/ubuntu19.10_py3/Dockerfile +++ b/.ci/ubuntu19.10_py3/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:19.10 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian eoan main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian eoan main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.3.3-dev libh5cpp0.3.3 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu20.04_py3/Dockerfile b/.ci/ubuntu20.04_py3/Dockerfile index d3194c06..0e121731 100644 --- a/.ci/ubuntu20.04_py3/Dockerfile +++ b/.ci/ubuntu20.04_py3/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian focal main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian focal main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.2.0-dev libpninexus3.2.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu20.10_py3/Dockerfile b/.ci/ubuntu20.10_py3/Dockerfile index 944a23b5..30703c5a 100644 --- a/.ci/ubuntu20.10_py3/Dockerfile +++ b/.ci/ubuntu20.10_py3/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:20.10 MAINTAINER DESY, Jan Kotanski RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y software-properties-common curl -RUN curl http://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian groovy main" -y +RUN curl https://repos.pni-hdri.de/debian_repo.pub.gpg | apt-key add - +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian groovy main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.4.1-dev libh5cpp0.4.1 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu21.04_py3/Dockerfile b/.ci/ubuntu21.04_py3/Dockerfile index 2b0d0fa7..fe4855ac 100644 --- a/.ci/ubuntu21.04_py3/Dockerfile +++ b/.ci/ubuntu21.04_py3/Dockerfile @@ -6,9 +6,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian hirsute main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian hirsute main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.5.0-dev libh5cpp0.5.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu21.10_py3/Dockerfile b/.ci/ubuntu21.10_py3/Dockerfile index 6450cdd2..4ac85ed8 100644 --- a/.ci/ubuntu21.10_py3/Dockerfile +++ b/.ci/ubuntu21.10_py3/Dockerfile @@ -6,9 +6,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/debian impish main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/debian impish main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus2.0.0-dev libpninexus2.0.0 libh5cpp0.4.1-dev libh5cpp0.4.1 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu22.04_py3/Dockerfile b/.ci/ubuntu22.04_py3/Dockerfile index abe1c735..f2c0013b 100644 --- a/.ci/ubuntu22.04_py3/Dockerfile +++ b/.ci/ubuntu22.04_py3/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/ubuntu jammy main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/ubuntu jammy main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.4.0-dev libpninexus3.4.0 libh5cpp0.8.0-dev libh5cpp0.8.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu22.10_py3/Dockerfile b/.ci/ubuntu22.10_py3/Dockerfile index b7e0481f..a1ab7d62 100644 --- a/.ci/ubuntu22.10_py3/Dockerfile +++ b/.ci/ubuntu22.10_py3/Dockerfile @@ -6,9 +6,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/ubuntu kinetic main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/ubuntu kinetic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.1.0-dev libpninexus3.1.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu23.04_py3/Dockerfile b/.ci/ubuntu23.04_py3/Dockerfile index 933c0c09..f650ddb4 100644 --- a/.ci/ubuntu23.04_py3/Dockerfile +++ b/.ci/ubuntu23.04_py3/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/ubuntu lunar main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/ubuntu lunar main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.2.0-dev libpninexus3.2.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu23.10_py3/Dockerfile b/.ci/ubuntu23.10_py3/Dockerfile index 793ed5f4..b1dd86f6 100644 --- a/.ci/ubuntu23.10_py3/Dockerfile +++ b/.ci/ubuntu23.10_py3/Dockerfile @@ -7,9 +7,9 @@ RUN apt-get update RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN add-apt-repository "deb http://repos.pni-hdri.de/apt/ubuntu mantic main" -y +RUN add-apt-repository "deb https://repos.pni-hdri.de/apt/ubuntu mantic main" -y RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools RUN apt-get -qq install -y libpninexus3.2.0-dev libpninexus3.2.0 libh5cpp0.6.0-dev libh5cpp0.6.0 python3-numpy libhdf5-dev libboost-regex-dev libboost-program-options-dev libboost-system-dev libboost-date-time-dev libboost-filesystem-dev libblas-dev libatlas-base-dev cython3 python3-setuptools libboost-python-dev python3-numpy-abi9 g++ python3-h5py diff --git a/.ci/ubuntu24.04_py3/Dockerfile b/.ci/ubuntu24.04_py3/Dockerfile index 64b5d587..54b68b62 100644 --- a/.ci/ubuntu24.04_py3/Dockerfile +++ b/.ci/ubuntu24.04_py3/Dockerfile @@ -9,9 +9,9 @@ RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget gpg-agent -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/noble-pni-hdri.list +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/noble-pni-hdri.list RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools diff --git a/.ci/ubuntu24.10_py3/Dockerfile b/.ci/ubuntu24.10_py3/Dockerfile index 9cad2c8d..c2a59727 100644 --- a/.ci/ubuntu24.10_py3/Dockerfile +++ b/.ci/ubuntu24.10_py3/Dockerfile @@ -8,9 +8,9 @@ RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget gpg-agent -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/oracular-pni-hdri.list +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/oracular-pni-hdri.list RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools diff --git a/.ci/ubuntu25.04_py3/Dockerfile b/.ci/ubuntu25.04_py3/Dockerfile index ff5d65c8..a8aab56b 100644 --- a/.ci/ubuntu25.04_py3/Dockerfile +++ b/.ci/ubuntu25.04_py3/Dockerfile @@ -8,9 +8,9 @@ RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget gpg-agent -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/plucky-pni-hdri.list +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/plucky-pni-hdri.list RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools diff --git a/.ci/ubuntu25.10_py3/Dockerfile b/.ci/ubuntu25.10_py3/Dockerfile index dabad50a..33154751 100644 --- a/.ci/ubuntu25.10_py3/Dockerfile +++ b/.ci/ubuntu25.10_py3/Dockerfile @@ -8,9 +8,9 @@ RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget gpg-agent -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/questing-pni-hdri.sources +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/questing-pni-hdri.sources RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools diff --git a/.ci/ubuntu26.04_py3/Dockerfile b/.ci/ubuntu26.04_py3/Dockerfile index f7fae650..e5cd3786 100644 --- a/.ci/ubuntu26.04_py3/Dockerfile +++ b/.ci/ubuntu26.04_py3/Dockerfile @@ -8,9 +8,9 @@ RUN apt-get install -y base-passwd apt-utils dialog -y RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN apt-get -qq update && apt-get -qq install -y libterm-readline-gnu-perl software-properties-common coreutils gnupg2 procps curl apt-transport-https gnupg2 ca-certificates wget gpg-agent -RUN curl -s http://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import +RUN curl --retry 10 -s https://repos.pni-hdri.de/debian_repo.pub.gpg | gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/debian-hdri-repo.gpg --import RUN chmod 644 /etc/apt/trusted.gpg.d/debian-hdri-repo.gpg -RUN cd /etc/apt/sources.list.d && wget http://repos.pni-hdri.de/resolute-pni-hdri.sources +RUN cd /etc/apt/sources.list.d && wget https://repos.pni-hdri.de/resolute-pni-hdri.sources RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq dist-upgrade RUN apt-get -qq update && export DEBIAN_FRONTEND=noninteractive && apt-get -qq install -y python3-sphinx apt-utils net-tools