From 7d9102dcfd03808965a6b033e2f4acbc1c703b92 Mon Sep 17 00:00:00 2001 From: tenten-one Date: Sun, 8 Sep 2024 22:26:59 +0800 Subject: [PATCH] feat: add devcontainer support (#80) Co-authored-by: weihongliang233 --- .devcontainer/devcontainer.json | 30 ++++++++++++++++++++++++++++++ .devcontainer/start.sh | 10 ++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/start.sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..91b3c15 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -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" +} diff --git a/.devcontainer/start.sh b/.devcontainer/start.sh new file mode 100644 index 0000000..604aaec --- /dev/null +++ b/.devcontainer/start.sh @@ -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