Skip to content
Snippets Groups Projects
Commit 56133003 authored by sparklyballs's avatar sparklyballs
Browse files

add sources.list, restructure dockerfile to avoid breaking apt with version from multiverse

parent b4933df8
No related branches found
No related tags found
No related merge requests found
......@@ -21,11 +21,25 @@ RUN \
/config \
/defaults
# install packages
# 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 && \
......
####################################################################################
####### 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. #######
####################################################################################
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://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment