ditch mirrors sources.list, in favour of just adding multiverse to the default list, too many downstream problems with mirror version
rodzic
5613300323
commit
d95115b365
15
Dockerfile
15
Dockerfile
|
@ -21,25 +21,16 @@ RUN \
|
||||||
/config \
|
/config \
|
||||||
/defaults
|
/defaults
|
||||||
|
|
||||||
|
# copy sources
|
||||||
|
COPY sources.list /etc/apt/
|
||||||
|
|
||||||
# install apt-utils
|
# install apt-utils
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
apt-utils && \
|
apt-utils && \
|
||||||
|
|
||||||
# cleanup
|
|
||||||
apt-get clean && \
|
|
||||||
rm -rf \
|
|
||||||
/tmp/* \
|
|
||||||
/var/lib/apt/lists/* \
|
|
||||||
/var/tmp/*
|
|
||||||
|
|
||||||
# copy sources
|
|
||||||
COPY sources.list /etc/apt/
|
|
||||||
|
|
||||||
# install packages
|
# install packages
|
||||||
RUN \
|
|
||||||
apt-get update && \
|
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
curl && \
|
curl && \
|
||||||
|
|
||||||
|
|
42
sources.list
42
sources.list
|
@ -1,13 +1,33 @@
|
||||||
####################################################################################
|
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
|
||||||
####### These repos should only be used for building docker containers #######
|
# newer versions of the distribution.
|
||||||
####### on premise by lsio and on lsio's servers, the may not preform well #######
|
|
||||||
####### from your home. #######
|
|
||||||
####################################################################################
|
|
||||||
|
|
||||||
deb http://mirrors.digitalocean.com/ubuntu/ trusty main restricted universe multiverse
|
deb http://archive.ubuntu.com/ubuntu/ xenial main restricted
|
||||||
deb-src http://mirrors.digitalocean.com/ubuntu/ trusty main restricted universe multiverse
|
deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted
|
||||||
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://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
|
## Major bug fix updates produced after the final release of the
|
||||||
deb-src http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
|
## 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
|
||||||
|
|
Ładowanie…
Reference in New Issue