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: d452c4591b55787ec1d02d05e57cbba4c1e441a2 (plain)
1
2
3
4
5
6
7
8
9
10
FROM gitpod/workspace-full
USER gitpod

# 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.5 && rvm use ruby-2.7.5 --default"
RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc