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

.gitpod.Dockerfile - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a39ec384c51cb8f12d974b177189b3d31b726c5 (plain)
1
2
3
4
5
6
7
8
9
10
FROM gitpod/workspace-full:2022-05-08-14-31-53
USER gitpod

# 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.6 && rvm use ruby-2.7.6 --default" \
  && echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc