Skip to content

Commit b855e2b

Browse files
committed
chore: fix dev container paths
This commit ensures that the dev container config has the right paths now that the worker has moved out of this repository in #396.
1 parent 19de967 commit b855e2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.devcontainer/devcontainer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"name": "ai-runner",
55
// Image to use for the dev container. More info: https://containers.dev/guide/dockerfile.
66
"build": {
7-
"dockerfile": "../Dockerfile",
7+
"dockerfile": "../runner/Dockerfile",
88
// "dockerfile": "../docker/Dockerfile.text_to_speech",
9-
"context": ".."
9+
"context": "../runner"
1010
},
1111
"runArgs": [
1212
"--gpus=all"
@@ -29,6 +29,6 @@
2929
// Use 'mounts' to make a list of local folders available inside the container.
3030
"mounts": [
3131
// "source=${localWorkspaceFolder}/models,target=/models,type=bind"
32-
"source=${localEnv:HOME}/.lpData/models,target=/models,type=bind"
32+
// "source=${localEnv:HOME}/.lpData/models,target=/models,type=bind"
3333
]
3434
}

0 commit comments

Comments
 (0)