ditch mirrors sources.list, in favour of just adding multiverse to the default list, too many downstream problems with mirror version

pull/2/head
sparklyballs 2016-09-04 13:52:26 +01:00
rodzic 5613300323
commit d95115b365
2 zmienionych plików z 34 dodań i 23 usunięć

Wyświetl plik

@ -21,25 +21,16 @@ RUN \
/config \
/defaults
# copy sources
COPY sources.list /etc/apt/
# install apt-utils
RUN \
apt-get update && \
apt-get install -y \
apt-utils && \
# cleanup
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# copy sources
COPY sources.list /etc/apt/
# install packages
RUN \
apt-get update && \
apt-get install -y \
curl && \

Wyświetl plik

@ -1,13 +1,33 @@
####################################################################################
####### These repos should only be used for building docker containers #######
####### on premise by lsio and on lsio's servers, the may not preform well #######
####### from your home. #######
####################################################################################
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://mirrors.digitalocean.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.digitalocean.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.digitalocean.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.digitalocean.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial main restricted
deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted
deb http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted
## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ xenial universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial universe multiverse
deb http://archive.ubuntu.com/ubuntu/ xenial-updates universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates universe multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted
deb http://archive.ubuntu.com/ubuntu/ xenial-security main restricted
deb-src http://archive.ubuntu.com/ubuntu/ xenial-security main restricted
deb http://archive.ubuntu.com/ubuntu/ xenial-security universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial-security universe multiverse