From 08743f6b195dd5233ccb4d2bc5f584aa086c567b Mon Sep 17 00:00:00 2001 From: STAM Date: Tue, 25 Jul 2023 22:21:08 +0300 Subject: [PATCH] --sslcheckcert=0 --- linux/ecosystem/epicmorg/debian/07-wheezy/main/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/ecosystem/epicmorg/debian/07-wheezy/main/Dockerfile b/linux/ecosystem/epicmorg/debian/07-wheezy/main/Dockerfile index 655e964c1..abff71ecc 100644 --- a/linux/ecosystem/epicmorg/debian/07-wheezy/main/Dockerfile +++ b/linux/ecosystem/epicmorg/debian/07-wheezy/main/Dockerfile @@ -132,14 +132,14 @@ RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /et ################################################################## # Install p4client ################################################################## -RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue -P /usr/bin ${P4_DOWNLOAD_URL} && \ +RUN wget --sslcheckcert=0 --no-check-certificate -nv --random-wait --retry-connrefused --continue -P /usr/bin ${P4_DOWNLOAD_URL} && \ chmod +x /usr/bin/p4 ################################################################## # dumb init ################################################################## ENV DUMB_INIT_VERSION=1.2.5 -RUN wget -q --no-check-certificate -c https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64 --random-wait -O /usr/bin/dumb-init && \ +RUN wget -q --sslcheckcert=0 --no-check-certificate -c https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64 --random-wait -O /usr/bin/dumb-init && \ chmod +x /usr/bin/dumb-init && \ dumb-init --version