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

20 lines
599 B
Docker

FROM debian
# 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
# Update
ENV DEBIAN_FRONTEND noninteractive
RUN apt update && apt upgrade -y
# Install gitlab-runner
RUN apt install -y gnupg2 && bash /tmp/script.deb.sh && apt install -y gitlab-runner
# 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"]