mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2025-12-05 22:34:57 +01:00
* adapt to git for win - fix numpy in order to avoid need for compilation - use Python 3.14 * update build.sh pipenv * fix(deps): update numpy version constraints for Python compatibility in requirements.txt * fix(deps): update numpy version constraints for more flexibility * fix(deps): specify numpy versions and use pip install --dev * revert pip install -U --dev * add install mesa-libGL for Fedora * add gitattributs
22 lines
777 B
JSON
22 lines
777 B
JSON
// Docu: https://containers.dev/implementors/json_reference/
|
|
{
|
|
"name": "Python 3",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "..",
|
|
//Update 'VARIANT' to pick a Python version: 3, 3.10, ...
|
|
"args": {
|
|
"VARIANT": "3.14"
|
|
}
|
|
},
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"ms-python.python"
|
|
],
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
"postCreateCommand":
|
|
"python -m pip install --upgrade pip; pip install -r requirements-dev.txt; pip install -r requirements.txt",
|
|
"postStartCommand": "echo 'Happy coding'"
|
|
// Comment out to connect as root instead.
|
|
// "remoteUser": "vscode"
|
|
}
|