Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
G
gitlab-ci-multi-runner
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aurélien Thieriot
gitlab-ci-multi-runner
Commits
9e43757d
Commit
9e43757d
authored
Jul 16, 2015
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added gitlab-runner Ubuntu image
parent
bc0a24d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
dockerfiles/ubuntu/Dockerfile
dockerfiles/ubuntu/Dockerfile
+14
-0
No files found.
dockerfiles/ubuntu/Dockerfile
0 → 100644
View file @
9e43757d
FROM
ubuntu:14.04
RUN
apt-get update
-y
&&
\
apt-get upgrade
-y
&&
\
apt-get
install
ca-certificates wget apt-transport-https vim nano
RUN
echo
"deb https://packages.gitlab.com/runner/gitlab-ci-multi-runner/ubuntu/
`
lsb_release
-cs
`
main"
>
/etc/apt/sources.list.d/runner_gitlab-ci-multi-runner.list
&&
\
wget
-q
-O
- https://packages.gitlab.com/gpg.key | apt-key add -
&&
\
apt-get update
-y
&&
\
apt-get
install
-y
gitlab-ci-multi-runner
VOLUME
["/etc/gitlab-runner", "/home/gitlab-runner"]
ENTRYPOINT
["gitlab-ci-multi-runner"]
CMD
["run", "--user=gitlab-runner", "--working-directory=/home/gitlab-runner"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment