Skip to content

Commit 4ed2c8c

Browse files
authored
Merge pull request #847 from STaegtmeier/patch/devcontainer
devcontainer install missing package
2 parents b256772 + 7d71f8c commit 4ed2c8c

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed

.devcontainer/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
FROM puppet/pdk:latest
22

3+
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4+
&& apt-get -y install --no-install-recommends build-essential
5+
36
# [Optional] Uncomment this section to install additional packages.
47
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
58
# && apt-get -y install --no-install-recommends <your-package-list-here>
6-

.devcontainer/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# devcontainer
22

3-
43
For format details, see https://aka.ms/devcontainer.json.
54

65
For config options, see the README at:

.devcontainer/devcontainer.json

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
{
2-
"name": "Puppet Development Kit (Community)",
3-
"dockerFile": "Dockerfile",
2+
"name": "Puppet Development Kit (Community)",
3+
"dockerFile": "Dockerfile",
4+
"runArgs": ["--name", "devcontainer-puppetlabs-docker"],
5+
"settings": {
6+
"terminal.integrated.profiles.linux": {
7+
"bash": {
8+
"path": "bash"
9+
}
10+
}
11+
},
412

5-
"settings": {
6-
"terminal.integrated.profiles.linux": {
7-
"bash": {
8-
"path": "bash",
9-
}
10-
}
11-
},
12-
13-
"extensions": [
14-
"puppet.puppet-vscode",
15-
"rebornix.Ruby"
16-
]
13+
"extensions": [
14+
"esbenp.prettier-vscode",
15+
"puppet.puppet-vscode",
16+
"rebornix.Ruby"
17+
]
1718
}

0 commit comments

Comments
 (0)