Skip to content

Commit

Permalink
fix: devcontainer works correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 11, 2024
1 parent 7f80501 commit 9655568
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .cpu_devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
{
"image": "ghcr.io/ucsd-e4e/fishsense-lite:cpu",
"postCreateCommand": [
"pip install poetry",
"poetry install --with dev"
],
"postCreateCommand": "pip install poetry && poetry install --with dev",
"mounts": [
{
"source": "${localEnv:HOME}/mnt",
"target": "/home/ubuntu/mnt",
"type": "volume"
}
"source=${localEnv:HOME}/mnt,target=/home/ubuntu/mnt,type=bind"
],
"customizations": {
"vscode": {
Expand Down
11 changes: 2 additions & 9 deletions .cuda_devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,9 @@
"--runtime=nvidia",
"-e", "NVIDIA_DRIVER_CAPABILITIES=all"
],
"postCreateCommand": [
"pip install poetry",
"poetry install --with dev"
],
"postCreateCommand": "pip install poetry && poetry install --with dev",
"mounts": [
{
"source": "${localEnv:HOME}/mnt",
"target": "/home/ubuntu/mnt",
"type": "volume"
}
"source=${localEnv:HOME}/mnt,target=/home/ubuntu/mnt,type=bind"
],
"customizations": {
"vscode": {
Expand Down

0 comments on commit 9655568

Please sign in to comment.