Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-baseimage-ubuntu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prosper
docker-baseimage-ubuntu
Commits
56133003
Commit
56133003
authored
8 years ago
by
sparklyballs
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+15
-1
15 additions, 1 deletion
Dockerfile
sources.list
+13
-0
13 additions, 0 deletions
sources.list
with
28 additions
and
1 deletion
Dockerfile
+
15
−
1
View file @
56133003
...
...
@@ -21,11 +21,25 @@ RUN \
/config
\
/defaults
# install
package
s
# install
apt-util
s
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
&&
\
...
...
This diff is collapsed.
Click to expand it.
sources.list
0 → 100644
+
13
−
0
View file @
56133003
####################################################################################
####### 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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment