Skip to content

Commit

Permalink
Merge pull request #50 from giallu/customizable_devcontainer
Browse files Browse the repository at this point in the history
Add `cmake` and `zsh` to devcontainer
  • Loading branch information
JanCBrammer authored Aug 23, 2024
2 parents 34c4d0f + 4364da5 commit 8477339
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
{
"name": "InChI",
"image": "gcc:14-bookworm",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"installOhMyZshConfig": true,
"upgradePackages": true,
"username": "automatic",
"userUid": "automatic",
"userGid": "automatic"
}
},
"customizations": {
"vscode": {
"settings": {
Expand Down
2 changes: 1 addition & 1 deletion INCHI-1-TEST/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

apt update && apt install -y python3-pip
apt update && apt install -y python3-pip cmake
python3 -m pip install --upgrade --break-system-packages pip
python3 -m pip install --break-system-packages -e .[invariance-tests,development]
# Make `python3` available as `python`.
Expand Down

0 comments on commit 8477339

Please sign in to comment.