Dermatolog-AI-Scan / .devcontainer /devcontainer.json
mstepien's picture
Hugging Face specific Dockerfile and .jpg excluded
98b0b74
{
"name": "Dermatolog AI Scanner Dev",
"image": "medgemma_ic-medgemma-app:latest",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
"upgradePackages": "true"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.black-formatter",
"charliermarsh.ruff",
"tamasfe.even-better-toml"
]
}
},
"forwardPorts": [
8080
],
"postCreateCommand": "pip install -r requirements-dev.txt && playwright install --with-deps chromium && npm install",
"runArgs": [
"--env-file",
".env"
]
}