This commit is contained in:
STAM 2023-07-25 22:34:09 +03:00
parent 5f2b1aafd0
commit 43f7ac280b
Signed by: stam
GPG Key ID: 4F57E51F9C45F8CD

View File

@ -88,7 +88,6 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
unrar \ unrar \
xz-utils \ xz-utils \
wget \ wget \
wget2 \
aptitude \ aptitude \
sudo \ sudo \
logrotate \ logrotate \
@ -133,7 +132,7 @@ RUN wget -c https://cli.github.com/packages/githubcli-archive-keyring.gpg -O /et
################################################################## ##################################################################
# Install p4client # Install p4client
################################################################## ##################################################################
RUN wget2 --no-check-certificate -nv --random-wait --retry-connrefused --continue -P /usr/bin ${P4_DOWNLOAD_URL} && \ RUN curl --insecure -o /usr/bin/p4 ${P4_DOWNLOAD_URL} && \
chmod +x /usr/bin/p4 chmod +x /usr/bin/p4
################################################################## ##################################################################