-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dev contaienr configuration Signed-off-by: Simon Zhao <[email protected]> * Use conda to manage environments Signed-off-by: Simon Zhao <[email protected]> * Set Python interpreter Signed-off-by: Simon Zhao <[email protected]> * Update Signed-off-by: Simon Zhao <[email protected]> * Add machine specs Signed-off-by: Simon Zhao <[email protected]> --------- Signed-off-by: Simon Zhao <[email protected]>
- Loading branch information
1 parent
4f5861d
commit d0a4af3
Showing
2 changed files
with
47 additions
and
69 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,50 @@ | ||
{ | ||
"name": "Recommenders", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": "..", | ||
"args": { | ||
// Python version: 3, 3.6, 3.7 | ||
"PYTHON_VERSION": "3.7", | ||
"REMOTE_USER": "vscode" | ||
} | ||
}, | ||
"name": "Recommenders", | ||
// Version list: https://github.com/devcontainers/images/tree/main/src/base-ubuntu | ||
// Includes: curl, wget, ca-certificates, git, Oh My Zsh!, | ||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04", | ||
"hostRequirements": { | ||
"cpus": 4, | ||
"memory": "16gb", | ||
"storage": "32gb" | ||
}, | ||
"features": { | ||
// https://github.com/devcontainers/features/blob/main/src/anaconda/devcontainer-feature.json | ||
"ghcr.io/devcontainers/features/anaconda:1": { | ||
"version": "2024.06-1" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.black-formatter", | ||
"editor.formatOnSave": true, | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit" | ||
} | ||
}, | ||
"isort.args": ["--profile", "black"], | ||
"python.analysis.autoImportCompletions": true, | ||
"python.defaultInterpreterPath": "/usr/local/conda/envs/Recommenders/bin/python", | ||
"python.testing.pytestEnabled": true, | ||
// set the directory where all tests are | ||
"python.testing.pytestArgs": ["tests"] | ||
}, | ||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"ms-python.black-formatter", // https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter | ||
"ms-python.isort", // https://marketplace.visualstudio.com/items?itemName=ms-python.isort | ||
"ms-python.mypy-type-checker", // https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker | ||
"ms-python.pylint", // https://marketplace.visualstudio.com/items?itemName=ms-python.pylint | ||
"ms-python.python", // https://marketplace.visualstudio.com/items?itemName=ms-python.python | ||
"ms-toolsai.datawrangler", // https://marketplace.visualstudio.com/items?itemName=ms-toolsai.datawrangler | ||
"ms-toolsai.jupyter" // https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter | ||
] | ||
} | ||
}, | ||
|
||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"python.pythonPath": "/usr/local/bin/python", | ||
"python.languageServer": "Pylance", | ||
"python.linting.enabled": true, | ||
"python.linting.pylintEnabled": true, | ||
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8", | ||
"python.formatting.blackPath": "/usr/local/py-utils/bin/black", | ||
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf", | ||
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit", | ||
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8", | ||
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy", | ||
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle", | ||
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle", | ||
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint" | ||
}, | ||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-python.vscode-pylance" | ||
], | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [8888], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "pip install -U pip && pip install --user -e .[dev,examples,spark,xlearn]", | ||
|
||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "vscode" | ||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "conda create -n Recommenders -c conda-forge -y python=3.10 openjdk=21 pip && conda init bash && bash -c -i 'conda activate Recommenders && pip install -e .[dev,spark]' && conda config --set auto_activate_base false" | ||
} |