Add a Ruby 2.6 image for www-gitlab-com

Ruby 2.5 will be needed by Middleman 5.
This commit is contained in:
Sean McGivern 2019-06-07 15:17:13 +01:00 committed by Stan Hu
parent b4bed8c5bb
commit 33f900fd36
2 changed files with 12 additions and 0 deletions

View file

@ -94,6 +94,7 @@ omnibus-gitlab-depscan test: *test_build
release-tools test: *test_build release-tools test: *test_build
sitespeed-gitlab test: *test_build sitespeed-gitlab test: *test_build
www-gitlab-com-2.4 test: *test_build www-gitlab-com-2.4 test: *test_build
www-gitlab-com-2.6 test: *test_build
gitlab-docs-lint test: *test_build gitlab-docs-lint test: *test_build
# Builds # Builds
@ -140,6 +141,7 @@ omnibus-gitlab-depscan: *build_and_deploy
release-tools: *build_and_deploy release-tools: *build_and_deploy
sitespeed-gitlab: *build_and_deploy sitespeed-gitlab: *build_and_deploy
www-gitlab-com-2.4: *build_and_deploy www-gitlab-com-2.4: *build_and_deploy
www-gitlab-com-2.6: *build_and_deploy
gitlab-docs-lint: *build_and_deploy gitlab-docs-lint: *build_and_deploy
cache-google-chrome: cache-google-chrome:

View file

@ -0,0 +1,10 @@
FROM ruby:2.6-slim
ADD /scripts/ /scripts/
RUN /scripts/install-www-gitlab-com
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
# Must be set after install-essentials is run
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8