Fix installing apt-fast

This commit is contained in:
SeanOMik 2020-10-25 21:44:26 +00:00
parent 2511c7c442
commit 1d156f8b08
1 changed files with 6 additions and 1 deletions

View File

@ -30,16 +30,21 @@ RUN dpkg --add-architecture i386 && \
echo "deb http://security.debian.org/debian-security buster/updates main contrib non-free" >> /etc/apt/sources.list && \
echo "deb http://deb.debian.org/debian buster-updates main contrib non-free" >> /etc/apt/sources.list && \
echo "deb http://deb.debian.org/debian buster-backports main contrib non-free" >> /etc/apt/sources.list && \
#echo "deb http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main" >> /etc/apt/sources.list && \
#echo "deb-src http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main" >> /etc/apt/sources.list && \
# Updating and upgrading
apt-get update && \
apt-get install -y gpg-agent && \
apt-get upgrade -y && \
apt-get install -y gpg-agent && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A2166B8DE8BDC3367D1901C11EE2FF37CA8DA16B && \
echo "deb http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main" >> /etc/apt/sources.list && \
echo "deb-src http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main" >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository ppa:apt-fast/stable && \
# add-apt-repository ppa:apt-fast/stable && \
apt-get update &&\
apt-get -y install apt-fast && \
apt-fast install -y --no-install-recommends unzip wget gpg-agent apt-transport-https && \