diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 5fbf068de65f..000000000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM mcr.microsoft.com/devcontainers/typescript-node:16-bookworm - -RUN apt-get install -y wget bzip2 - -# Run in silent mode and save downloaded script as anaconda.sh. -# Run with /bin/bash and run in silent mode to /opt/conda. -# Also get rid of installation script after finishing. -RUN wget --quiet https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-x86_64.sh -O ~/anaconda.sh && \ - /bin/bash ~/anaconda.sh -b -p /opt/conda && \ - rm ~/anaconda.sh - -ENV PATH="/opt/conda/bin:$PATH" - -# Sudo apt update needs to run in order for installation of fish to work . -RUN sudo apt update && \ - sudo apt install fish -y - - diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index fe15f35764e6..000000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,30 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. -{ - "name": "VS Code Python Dev Container", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "build": { - "dockerfile": "./Dockerfile", - "context": ".." - }, - "customizations": { - "vscode": { - "extensions": [ - "editorconfig.editorconfig", - "esbenp.prettier-vscode", - "dbaeumer.vscode-eslint", - "ms-python.python", - "ms-python.black-formatter", - "ms-python.vscode-pylance", - "charliermarsh.ruff" - ] - } - }, - // Commands to execute on container creation,start. - "postCreateCommand": "bash scripts/postCreateCommand.sh", - "onCreateCommand": "bash scripts/onCreateCommand.sh", - - "containerEnv": { - "CI_PYTHON_PATH": "/workspaces/vscode-python/.venv/bin/python" - } - -}