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
6cade977
Commit
6cade977
authored
7 years ago
by
sparklyballs
Browse files
Options
Downloads
Patches
Plain Diff
fix continuation lines
parent
6528e481
No related branches found
Branches containing commit
Tags
81
82
83
84
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+6
-14
6 additions, 14 deletions
Dockerfile
with
6 additions
and
14 deletions
Dockerfile
+
6
−
14
View file @
6cade977
FROM
lsiobase/xenial-root-x86
MAINTAINER
sparklyballs
# set version for s6 overlay
ARG
OVERLAY_VERSION="v1.19.1.1"
...
...
@@ -15,39 +14,32 @@ TERM="xterm"
# copy sources
COPY
sources.list /etc/apt/
# install apt-utils and locales
RUN
\
echo
"**** install apt-utils and locales ****"
&&
\
apt-get update
&&
\
apt-get
install
-y
\
apt-utils
\
locales
&&
\
# install packages
echo
"**** install packages ****"
&&
\
apt-get
install
-y
\
curl
\
tzdata
&&
\
# generate locale
echo
"**** generate locale ****"
&&
\
locale-gen en_US.UTF-8
&&
\
# add s6 overlay
echo
"**** add s6 overlay ****"
&&
\
curl
-o
\
/tmp/s6-overlay.tar.gz
-L
\
"https://github.com/just-containers/s6-overlay/releases/download/
${
OVERLAY_VERSION
}
/s6-overlay-
${
OVERLAY_ARCH
}
.tar.gz"
&&
\
tar
xfz
\
/tmp/s6-overlay.tar.gz
-C
/
&&
\
# create abc user
echo
"**** create abc user and make our folders ****"
&&
\
useradd
-u
911
-U
-d
/config
-s
/bin/false abc
&&
\
usermod
-G
users
abc
&&
\
# make our folders
mkdir
-p
\
/app
\
/config
\
/defaults
&&
\
# cleanup
echo
"**** cleanup ****"
&&
\
apt-get clean
&&
\
rm
-rf
\
/tmp/
*
\
...
...
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