Use Ruby 2.6 for gitlab-qa image

Rename the image so that it doesn't break gitlab-qa builds, since
Rubocop will need to be updated.
This commit is contained in:
Stan Hu 2020-01-17 06:55:15 -08:00
parent 1d4063cd45
commit ba38efc291
2 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,12 @@
FROM ruby:2.6
# Enable support for UTF encoded stdin/stdout
ENV LANG C.UTF-8
WORKDIR /home/qa
RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-19.03.1.tgz && \
tar -zxf docker-19.03.1.tgz && mv docker/docker /usr/local/bin/docker && \
echo "9b6191f64cb89e706dc29390408260d643e88f7f853d8878b2fb0360186b2ac3 /usr/local/bin/docker" | sha256sum -c - && \
rm docker-19.03.1.tgz