Merge d507f35e9cfb2c9cbbcf303c5441708a55582a31 into 7689917113fe521adfaba2a4fff952ef1805ad2b

This commit is contained in:
Benjamin Lu 2025-05-03 02:21:16 -04:00 committed by GitHub
commit f3716299a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,24 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
// 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": [8188],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "python3 -m pip install --upgrade pip",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"hostRequirements": {"gpu":"optional"}
}