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:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2022-06-13 12:06:06 +0300
committerTakuya Noguchi <takninnovationresearch@gmail.com>2022-06-13 12:06:06 +0300
commitb210d6950dd08fb377d7281e4b7284569403525c (patch)
tree1513d004449b8cfbd88487aea6b451d96186b9d7 /.gitpod.Dockerfile
parente4d9ddec5a6a6951b6da55686e6966faeef18c7c (diff)
Update Ruby to 2.7.6 on Gitpod
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
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 2427a362..4a39ec38 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -1,10 +1,10 @@
FROM gitpod/workspace-full:2022-05-08-14-31-53
USER gitpod
-# Install Ruby version 2.7.5 and set it as default.
+# Install Ruby version 2.7.6 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 \
- && bash -lc "rvm install ruby-2.7.5 && rvm use ruby-2.7.5 --default" \
+ && bash -lc "rvm install ruby-2.7.6 && rvm use ruby-2.7.6 --default" \
&& echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc