Skip to content

Commit

Permalink
feat: add devcontainer support (#80)
Browse files Browse the repository at this point in the history
Co-authored-by: weihongliang233 <[email protected]>
  • Loading branch information
tenten-one and weihongliang233 authored Sep 8, 2024
1 parent 5fde8af commit 7d9102d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -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 changes: 10 additions & 0 deletions .devcontainer/start.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7d9102d

Please sign in to comment.