Skip to content

Commit bd98dac

Browse files
authored
fixbug: fix devcontainer context (#1938)
<!-- .github/pull_request_template.md --> ## 📌 Description This PR fixes the dev container after #1880. <!-- What does this PR do? Briefly describe the changes and why they’re needed. --> ## 🔍 Related Issues <!-- Link any related issues here --> ## 🚀 Pull Request Checklist Thank you for contributing to FlashInfer! Before we review your pull request, please make sure the following items are complete. ### ✅ Pre-commit Checks - [ ] I have installed `pre-commit` by running `pip install pre-commit` (or used your preferred method). - [ ] I have installed the hooks with `pre-commit install`. - [ ] I have run the hooks manually with `pre-commit run --all-files` and fixed any reported issues. > If you are unsure about how to set up `pre-commit`, see [the pre-commit documentation](https://pre-commit.com/). ## 🧪 Tests - [ ] Tests have been added or updated as needed. - [ ] All tests are passing (`unittest`, etc.). ## Reviewer Notes <!-- Optional: anything you'd like reviewers to focus on, concerns, etc. -->
1 parent 9f25eee commit bd98dac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.devcontainer/cu126/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "CUDA Development Container",
33
"build": {
44
"dockerfile": "../../docker/Dockerfile.cu126.dev",
5-
"context": "../../docker/"
5+
"context": "../../"
66
},
77
"runArgs": [
88
"--gpus=all"

.devcontainer/cu128/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "CUDA Development Container",
33
"build": {
44
"dockerfile": "../../docker/Dockerfile.cu128.dev",
5-
"context": "../../docker/"
5+
"context": "../../"
66
},
77
"runArgs": [
88
"--gpus=all"

.devcontainer/cu129/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "CUDA Development Container",
33
"build": {
44
"dockerfile": "../../docker/Dockerfile.cu129.dev",
5-
"context": "../../docker/"
5+
"context": "../../"
66
},
77
"runArgs": [
88
"--gpus=all"

.devcontainer/cu130/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "CUDA Development Container",
33
"build": {
44
"dockerfile": "../../docker/Dockerfile.cu130.dev",
5-
"context": "../../docker/"
5+
"context": "../../"
66
},
77
"runArgs": [
88
"--gpus=all"

0 commit comments

Comments
 (0)