Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKati Paizee <kpaizee@gitlab.com>2021-12-09 03:57:04 +0300
committerEvan Read <eread@gitlab.com>2021-12-09 03:57:04 +0300
commitd57dccbaebdeff7c905a8be0a8d57a2b35ec5c07 (patch)
treed89c1315b2b92d6e8cd16d8a9ba78cbebf348894 /.gitpod.Dockerfile
parent175ca4a7e9080eded041c8d40b9af701434881df (diff)
Update Ruby version to 2.7.5
Diffstat (limited to '.gitpod.Dockerfile')
-rw-r--r--.gitpod.Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile
index 2861e663..d452c459 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -1,10 +1,10 @@
FROM gitpod/workspace-full
USER gitpod
-# Install Ruby version 2.7.4 and set it as default.
+# Install Ruby version 2.7.5 and set it as default.
# Required when the base Gitpod Docker image doesn't provide the version of Ruby we want.
# For more information, see: https://www.gitpod.io/docs/languages/ruby.
RUN echo "rvm_gems_path=/home/gitpod/.rvm" > ~/.rvmrc
-RUN bash -lc "rvm install ruby-2.7.4 && rvm use ruby-2.7.4 --default"
+RUN bash -lc "rvm install ruby-2.7.5 && rvm use ruby-2.7.5 --default"
RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc