// 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": "speckle-automate-pymesh", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "dockerFile": "../Dockerfile", // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "poetry install --no-root", // Configure tool-specific properties. "customizations": { "vscode": { // Add the IDs of extensions you want installed when the container is created. "extensions": [ "ms-python.python", "mikestead.dotenv", "streetsidesoftware.code-spell-checker", "ms-python.vscode-pylance", "ms-python.black-formatter", "charliermarsh.ruff" ] } } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }