Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
omnibus-docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin Lyda
omnibus-docker
Commits
52c280c2
Commit
52c280c2
authored
8 years ago
by
Kevin Lyda
Browse files
Options
Downloads
Patches
Plain Diff
Fix docker build issues.
parent
3aa34844
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+4
-2
4 additions, 2 deletions
Dockerfile
app/init
+2
-1
2 additions, 1 deletion
app/init
with
6 additions
and
3 deletions
Dockerfile
+
4
−
2
View file @
52c280c2
...
...
@@ -3,8 +3,10 @@ LABEL maintainer="Kevin Lyda <lyda@gitlab.com>"
EXPOSE
80 22
RUN
DEBIAN_FRONTEND
=
noninteractive
\
apt-get
install
curl openssh-server ca-certificates postfix
RUN
apt-get update
\
&&
DEBIAN_FRONTEND
=
noninteractive
\
apt-get
install
-y
curl openssh-server ca-certificates postfix
\
&&
apt-get clean
ADD
app /app
ENTRYPOINT
["/app/init"]
This diff is collapsed.
Click to expand it.
app/init
+
2
−
1
View file @
52c280c2
...
...
@@ -11,7 +11,8 @@ EOF
exit
1
fi
apt-get update
curl
-s
$base_url$EDITION
/script.deb.sh | bash
apt-get
install
gitlab-
${
EDITION
}
=
${
VERSION
}
-
${
EDITION
}
.0
apt-get
install
-y
gitlab-
${
EDITION
}
=
${
VERSION
}
-
${
EDITION
}
.0
gitlab-ctl reconfigure
exec
bash
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