File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change
1
+ FROM gitpod/workspace-full
2
+ USER gitpod
3
+
4
+ # Install Ruby version 2.7.6 and set it as default
5
+ RUN _ruby_version=ruby-2.7.6 \
6
+ && printf "rvm_gems_path=/home/gitpod/.rvm\n " > ~/.rvmrc \
7
+ && bash -lc "rvm reinstall ${_ruby_version} && \
8
+ rvm use ${_ruby_version} --default" \
9
+ && printf "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc \
10
+ && printf "{ rvm use \$ (rvm current); } >/dev/null 2>&1\n " >> "$HOME/.bashrc.d/70-ruby"
11
+
Original file line number Diff line number Diff line change 1
- # This configuration file was automatically generated by Gitpod.
2
- # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3
- # and commit this file to your remote git repository to share the goodness with others.
4
- image : gitpod/workspace-ruby-2
1
+ image :
2
+ file : .gitpod.Dockerfile
5
3
6
4
github :
7
5
prebuilds :
8
6
develop : true
9
7
# enable for pull requests coming from this repo (defaults to true)
10
8
pullRequests : true
11
- # enable for pull requests coming from forks (defaults to false)
12
- pullRequestsFromForks : true
9
+
13
10
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
14
11
addComment : true
12
+
15
13
# add a "Review in Gitpod" button to pull requests (defaults to false)
16
14
addBadge : true
15
+
17
16
# add a label once the prebuild is ready to pull requests (defaults to false)
18
17
addLabel : prebuilt-in-gitpod
19
18
You can’t perform that action at this time.
0 commit comments