mirror of
https://github.com/Zeyi-Lin/HivisionIDPhotos.git
synced 2026-08-28 19:45:12 +08:00
feat: add devcontainer support (#80)
Co-authored-by: weihongliang233 <weijohn158@gmail.com>
This commit is contained in:
@@ -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"
|
||||
}
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user