From 46bf023cdbd68770f01655acaab803be1ad52ebf Mon Sep 17 00:00:00 2001 From: John Dohoney <42818490+johndohoneyjr@users.noreply.github.com> Date: Fri, 3 Feb 2023 09:28:55 -0800 Subject: [PATCH] Create devcontainer.json --- .devcontainer/devcontainer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..60a4abc --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +{ + "dockerFile": "Dockerfile", + "hostRequirements": { + "cpus": 4 + }, + "waitFor": "onCreateCommand", + "updateContentCommand": "python3 -m pip install -r requirements.txt", + "postCreateCommand": "", + "customizations": { + "codespaces": { + "openFiles": [] + }, + "vscode": { + "extensions": [ + "ms-toolsai.jupyter", + "ms-python.python", + "ms-python.python", + "ms-python.vscode-pylance" + ] + } + } +}