// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: // https://github.com/microsoft/vscode-dev-containers/tree/v0.238.0/containers/docker-existing-dockerfile { "name": "Existing Dockerfile", // Sets the run context to one level up instead of the .devcontainer folder. "context": "..", // Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. "dockerFile": "../Dockerfile", // Add the IDs of extensions you want installed when the container is created. "extensions": [ "ms-python.python" ], // Install OS dependencies "postCreateCommand": "apt-get update && apt -qq install -y sox && apt-get install -y libsox-fmt-all" }