From 3e193b8e67ed9d47a1b7aaa765ab64c47f12d985 Mon Sep 17 00:00:00 2001
From: Sylvester Joosten <sylvester.joosten@gmail.com>
Date: Sun, 2 May 2021 03:37:54 +0000
Subject: [PATCH] Resolve "Add gitlab-runner"

---
 VERSION                          |  2 +-
 containers/release/Dockerfile.in | 11 +++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/VERSION b/VERSION
index c8e38b614..dedcc7d43 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.9.0
+2.9.1
diff --git a/containers/release/Dockerfile.in b/containers/release/Dockerfile.in
index 8b259c63d..58a62e420 100644
--- a/containers/release/Dockerfile.in
+++ b/containers/release/Dockerfile.in
@@ -44,6 +44,17 @@ COPY --from=builder /opt/software /opt/software
 RUN rm -rf /usr/local
 COPY --from=builder /usr/local /usr/local
 
+## install gitlab-runner FIXME: needs to be consolidated with other installs
+## installing package from buster (stable) instead of bullseye (testing)
+RUN curl -L \
+    "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | \
+    bash \
+ && sed -i "s/bullseye/buster/" /etc/apt/sources.list.d/runner_gitlab-runner.list \
+ && apt-get update \
+ && apt-get -yqq install --no-install-recommends gitlab-runner \
+ && apt-get -yqq autoremove \
+ && rm -rf /var/lib/apt/lists/*
+
 ## eic-shell and environment scripts. Not strictly needed anymore now we auto-load
 ## the environment but still provided for backward compatibility (and documentation).
 COPY eic-shell /usr/local/bin/eic-shell
-- 
GitLab