From 422013d00bb9c963165390050409b4fc9359ecad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= Date: Thu, 3 Feb 2022 15:22:48 +0100 Subject: [PATCH] Add triage-ops image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable --- .gitlab/ci/custom.images.yml | 2 ++ Dockerfile.triage-ops-ruby-2.7 | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 Dockerfile.triage-ops-ruby-2.7 diff --git a/.gitlab/ci/custom.images.yml b/.gitlab/ci/custom.images.yml index f3b7f49..1fd9ce4 100644 --- a/.gitlab/ci/custom.images.yml +++ b/.gitlab/ci/custom.images.yml @@ -46,6 +46,7 @@ omnibus-gitlab-depscan test: *test_build omnibus-gitlab-cve-search test: *test_build release-tools test: *test_build +triage-ops-ruby-2.7 test: *test_build sitespeed-gitlab test: *test_build ubi-release test: *test_build www-gitlab-com-3.0 test: *test_build @@ -91,6 +92,7 @@ omnibus-gitlab-focal push: *build_and_deploy omnibus-gitlab-depscan push: *build_and_deploy omnibus-gitlab-cve-search push: *build_and_deploy release-tools push: *build_and_deploy +triage-ops-ruby-2.7 push: *build_and_deploy sitespeed-gitlab push: *build_and_deploy ubi-release push: *build_and_deploy www-gitlab-com-3.0 push: *build_and_deploy diff --git a/Dockerfile.triage-ops-ruby-2.7 b/Dockerfile.triage-ops-ruby-2.7 new file mode 100644 index 0000000..49e8bd1 --- /dev/null +++ b/Dockerfile.triage-ops-ruby-2.7 @@ -0,0 +1,9 @@ +FROM ruby:2.7 + +RUN apt-get update \ + && apt-get install -y cmake + +# Set UTF-8 http://jaredmarkell.com/docker-and-locales/ +ENV LANG C.UTF-8 +ENV LANGUAGE C +ENV LC_ALL C.UTF-8