feat: add devcontainer support (#80)

Co-authored-by: weihongliang233 <weijohn158@gmail.com>
This commit is contained in:
tenten-one
2024-09-08 22:26:59 +08:00
committed by GitHub
parent 5fde8af12b
commit 7d9102dcfd
2 changed files with 40 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/universal
{
"name": "Default Linux Universal",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"onCreateCommand": "sh .devcontainer/start.sh",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"eamodio.gitlens",
"mhutchie.git-graph"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
+10
View File
@@ -0,0 +1,10 @@
sudo apt-get update && sudo apt-get install ffmpeg libsm6 libxext6 -y
conda create -n HivisionIDPhotos python=3.10 -y
conda init
echo 'conda activate HivisionIDPhotos' >> ~/.bashrc
ENV_PATH="/opt/conda/envs/HivisionIDPhotos/bin"
$ENV_PATH/pip install -r requirements.txt -r requirements-app.txt -r requirements-dev.txt
$ENV_PATH/python scripts/download_model.py --models all