This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/runner/Dockerfile

16 lines
569 B
Docker
Raw Normal View History

2018-12-11 20:25:54 +01:00
FROM registry.wojciechkozlowski.eu/wojtek/loki/base
2018-01-23 01:05:04 +01:00
# Add files to setup GitLab repo
ADD script.deb.sh /tmp/script.deb.sh
ADD pin-gitlab-runner.pref /etc/apt/preferences.d/pin-gitlab-runner.pref
# Install gitlab-runner
2018-12-11 20:25:54 +01:00
RUN apt-get -y install gnupg2 && bash /tmp/script.deb.sh && apt-get -y install gitlab-runner
2018-01-23 01:05:04 +01:00
# Preserve runner's data
VOLUME ["/etc/gitlab-runner", "/home/gitlab-runner"]
# init sets up the environment and launches gitlab-runner
CMD ["run", "--user=gitlab-runner", "--working-directory=/home/gitlab-runner"]
ENTRYPOINT ["/usr/bin/gitlab-runner"]