From dd522b64948d006c460cce4a5e9725936f7881d7 Mon Sep 17 00:00:00 2001 From: Alex Hanselka Date: Wed, 14 Dec 2016 11:21:02 -0600 Subject: [PATCH] add the gitlab-runner binary so that the build will work on Kubernetes --- Dockerfile.www-gitlab-com | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile.www-gitlab-com b/Dockerfile.www-gitlab-com index 613cf4e..9f48df9 100644 --- a/Dockerfile.www-gitlab-com +++ b/Dockerfile.www-gitlab-com @@ -5,6 +5,9 @@ ENV PACKAGES="git-core pandoc texlive-latex-recommended texlive-xetex texlive-fo ADD / / RUN /scripts/install-www-gitlab-com +ADD https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 /usr/bin/gitlab-runner-helper +RUN chmod +x /usr/bin/gitlab-runner-helper + # Set UTF-8 http://jaredmarkell.com/docker-and-locales/ # Must be set after install-essentials is run ENV LANG en_US.UTF-8