Skip to content

Instantly share code, notes, and snippets.

@phelewski
phelewski / devcontainer.json
Last active May 20, 2021 15:18
Visual Studios Code Remote - Container Blog | Example Ruby Project devcontainer.json
{
"name": "Ruby Development",
"dockerFile": "Dockerfile",
"appPort": 9001,
"extensions": [
"rebornix.Ruby",
"castwide.solargraph",
"kaiwood.endwise",
"misogi.ruby-rubocop",
"groksrc.ruby",
@phelewski
phelewski / Dockerfile
Last active March 9, 2020 12:57
Visual Studios Code Remote - Container Blog | Example Ruby Project Dockerfile
FROM ruby:2.5
RUN gem install bundler \
rubocop \
solargraph