gitlab-build-images/Dockerfile.www-gitlab-com-2.6
Stan Hu 51a90da400 Upgrade Ruby to 2.6.5 for www-gitlab-com builds
This should help us confirm whether
https://bugs.ruby-lang.org/issues/16136 is indeed fixed.
2019-10-12 06:33:07 -07:00

10 lines
259 B
Docker

FROM ruby:2.6.5-slim-stretch
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