Skip to content

Commit

Permalink
Updated devcontainer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex committed Oct 27, 2024
1 parent b2bb36c commit 27c8103
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
// https://aka.ms/devcontainer.json
{
// (installing Node in the Python container seems to work better than the other way around)
// https://github.com/devcontainers/templates/tree/main/src/python
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bookworm",
"features": {
// https://github.com/devcontainers/features/tree/main/src/common-utils
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": false,
"installOhMyZsh": false,
"installOhMyZshConfig": false,
"username": "none",
"nonFreePackages": true
},
// https://github.com/devcontainers/features/tree/main/src/node
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/haukex/devcontainer-features/perl:1": {}
},
"forwardPorts": [ 1234 ],
"postCreateCommand": "make installdeps"
}
{ // https://aka.ms/devcontainer.json
"image": "mcr.microsoft.com/devcontainers/base:debian",
"features": {
// https://github.com/devcontainers/features/tree/main/src/common-utils
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": false,
"installOhMyZsh": false,
"installOhMyZshConfig": false,
"nonFreePackages": true,
"username": "none"
},
// https://github.com/haukex/devcontainer-features/tree/main/src/perl
"ghcr.io/haukex/devcontainer-features/perl:1": {},
// https://github.com/devcontainers/features/tree/main/src/node
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/guiyomh/features/vim:0": {}
},
"forwardPorts": [ 1234 ],
"postCreateCommand": "make installdeps"
}
/* vim: set filetype=javascript ts=4 sw=4 expandtab : */

0 comments on commit 27c8103

Please sign in to comment.