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:
authorEvan Read <eread@gitlab.com>2023-05-03 22:45:28 +0300
committerSarah German <sgerman@gitlab.com>2023-05-03 22:45:28 +0300
commitc4726b3fb84d0aeda1376cd598ffb7dc0cf5113d (patch)
treeeecbb80c4227e40da44fd15c506797a0bd265113 /.gitpod.Dockerfile
parent85c0bc2e83214f47c1d733c2a939241891da4bf2 (diff)
Update project to Ruby 3.2.2
Diffstat (limited to '.gitpod.Dockerfile')
-rw-r--r--.gitpod.Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile
index 26f99ab7..bdb3e95f 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -1,11 +1,11 @@
-FROM gitpod/workspace-full:2023-01-16-03-31-28
+FROM gitpod/workspace-full:2023-04-26-16-17-17
USER gitpod
-# Install Ruby version 3.2.1 and set it as default.
+# Install Ruby version 3.2.2 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 _ruby_version=ruby-3.2.1 \
+RUN _ruby_version=ruby-3.2.2 \
&& printf "rvm_gems_path=/home/gitpod/.rvm\n" > ~/.rvmrc \
&& bash -lc "rvm reinstall ${_ruby_version} && \
rvm use ${_ruby_version} --default" \