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

Commit d02cac8

Browse files
committed
Fixes and formatting
1 parent 5171ed0 commit d02cac8

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update \
1818
&& apt-get -y install git procps lsb-release \
1919
#
2020
# Install F#
21-
&& apt-get install fsharp \
21+
&& apt-get install -y fsharp \
2222
#
2323
# Clean up
2424
&& apt-get autoremove -y \

containers/dotnetcore-latest-fsharp/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update \
1818
&& apt-get -y install git procps lsb-release \
1919
#
2020
# Install F#
21-
&& apt-get install fsharp \
21+
&& apt-get install -y fsharp \
2222
#
2323
# Clean up
2424
&& apt-get autoremove -y \
Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
22
"name": "Ruby 2 Rails",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"rebornix.Ruby",
6-
],
7-
"runArgs": [],
4+
85
// Uncomment the next line if you want to publish any ports.
96
// "appPort": ["80:80"],
107

8+
// Uncomment the next line if you want to add in default container specific settings.json values
9+
// "settings": { "workbench.colorTheme": "Quiet Light" },
10+
1111
// Uncomment the next line to run commands after the container is created.
12-
// "postCreateCommand": "cd ${input:projectName} && bundle install"
12+
// "postCreateCommand": "cd ${input:projectName} && bundle install",
13+
14+
"extensions": [
15+
"rebornix.Ruby",
16+
]
1317
}
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"name": "Ruby 2 Sinatra",
33
"dockerFile": "Dockerfile",
4-
"extensions": [
5-
"rebornix.Ruby"
6-
],
74

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

8+
// Uncomment the next line if you want to add in default container specific settings.json values
9+
// "settings": { "workbench.colorTheme": "Quiet Light" },
10+
1111
// Uncomment the next line to run commands after the container is created.
12-
// "postCreateCommand": ""
12+
// "postCreateCommand": "",
1313

14+
"extensions": [
15+
"rebornix.Ruby"
16+
]
1417
}

0 commit comments

Comments
 (0)