Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM mcr.microsoft.com/vscode/devcontainers/ruby:3.2

RUN sudo gem update --system
RUN gem install appraisal
RUN sudo chown -R vscode:vscode /usr/local/rvm/gems /usr/local/rvm/gems/default /usr/local/lib/ruby /usr/local/bundle
20 changes: 20 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "Ruby Development Container",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/common-utils:1": {}
},
"postCreateCommand": "bundle install && bundle exec appraisal install",
"customizations": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"vscode": {
"extensions": [
"rebornix.Ruby"
]
}
}
}