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-03-13 13:31:58 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2023-03-13 13:31:58 +0300
commit45925193a4406edcac61c4f697666abebe65ba79 (patch)
tree0fba19ea17846aa4e75e4dc3a28b49120a5713ae /.gitpod.Dockerfile
parenta6d7a8e4c5be9a02e5e6f259083335dc7b48acb1 (diff)
Update to Ruby 3.2.1 and Alpine 3.17
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 4e80455e..26f99ab7 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -1,11 +1,11 @@
FROM gitpod/workspace-full:2023-01-16-03-31-28
USER gitpod
-# Install Ruby version 3.0.5 and set it as default.
+# Install Ruby version 3.2.1 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.0.5 \
+RUN _ruby_version=ruby-3.2.1 \
&& printf "rvm_gems_path=/home/gitpod/.rvm\n" > ~/.rvmrc \
&& bash -lc "rvm reinstall ${_ruby_version} && \
rvm use ${_ruby_version} --default" \