Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fixes and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Jun 12, 2019
1 parent 5171ed0 commit d02cac8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \
&& apt-get -y install git procps lsb-release \
#
# Install F#
&& apt-get install fsharp \
&& apt-get install -y fsharp \
#
# Clean up
&& apt-get autoremove -y \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \
&& apt-get -y install git procps lsb-release \
#
# Install F#
&& apt-get install fsharp \
&& apt-get install -y fsharp \
#
# Clean up
&& apt-get autoremove -y \
Expand Down
14 changes: 9 additions & 5 deletions containers/ruby-2-rails-5/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"name": "Ruby 2 Rails",
"dockerFile": "Dockerfile",
"extensions": [
"rebornix.Ruby",
],
"runArgs": [],

// Uncomment the next line if you want to publish any ports.
// "appPort": ["80:80"],

// Uncomment the next line if you want to add in default container specific settings.json values
// "settings": { "workbench.colorTheme": "Quiet Light" },

// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "cd ${input:projectName} && bundle install"
// "postCreateCommand": "cd ${input:projectName} && bundle install",

"extensions": [
"rebornix.Ruby",
]
}
11 changes: 7 additions & 4 deletions containers/ruby-2-sinatra/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"name": "Ruby 2 Sinatra",
"dockerFile": "Dockerfile",
"extensions": [
"rebornix.Ruby"
],

// Uncomment and edit the next line if you want to publish any ports.
// "appPort": ["4567:4567"]

// Uncomment the next line if you want to add in default container specific settings.json values
// "settings": { "workbench.colorTheme": "Quiet Light" },

// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": ""
// "postCreateCommand": "",

"extensions": [
"rebornix.Ruby"
]
}

0 comments on commit d02cac8

Please sign in to comment.