mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Update ruby in www-gitlab-com docker image to 2.4.x
This commit is contained in:
parent
c3c63d6d5a
commit
a2d0ca903c
2 changed files with 3 additions and 3 deletions
18
Dockerfile.www-gitlab-com-2.4
Normal file
18
Dockerfile.www-gitlab-com-2.4
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
FROM ruby:2.4-slim
|
||||
|
||||
ADD / /
|
||||
RUN /scripts/install-www-gitlab-com
|
||||
|
||||
# NodeJS and Yarn
|
||||
ARG NODE_INSTALL_VERSION=8.x
|
||||
ARG YARN_INSTALL_VERSION=1.2.1-1
|
||||
RUN /scripts/install-node $NODE_INSTALL_VERSION $YARN_INSTALL_VERSION && node --version && yarn --version
|
||||
|
||||
ADD https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 /usr/bin/gitlab-runner-helper
|
||||
RUN chmod +x /usr/bin/gitlab-runner-helper
|
||||
|
||||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue