diff --git a/.devcontainer/README.MD b/.devcontainer/README.MD deleted file mode 100644 index 001c24beb4..0000000000 --- a/.devcontainer/README.MD +++ /dev/null @@ -1 +0,0 @@ -The files in this directory configure a development container for GitHub Codespaces. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 6c97e3bf55..0000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "OpenHands Codespaces", - "image": "mcr.microsoft.com/devcontainers/universal", - "customizations":{ - "vscode":{ - "extensions": [ - "ms-python.python" - ] - } - }, - "onCreateCommand": "sh ./.devcontainer/on_create.sh", - "postCreateCommand": "make build", - "postStartCommand": "USE_HOST_NETWORK=True nohup bash -c 'make run &'" - -} diff --git a/.devcontainer/on_create.sh b/.devcontainer/on_create.sh deleted file mode 100644 index 43da102323..0000000000 --- a/.devcontainer/on_create.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -sudo apt update -sudo apt install -y netcat -sudo add-apt-repository -y ppa:deadsnakes/ppa -sudo apt install -y python3.12 -curl -sSL https://install.python-poetry.org | python3.12 - diff --git a/containers/dev/README.md b/containers/dev/README.md index ed45e0c3a5..0fb1bbc3b3 100644 --- a/containers/dev/README.md +++ b/containers/dev/README.md @@ -1,5 +1,8 @@ # Develop in Docker +> [!WARNING] +> This is not officially supported and may not work. + Install [Docker](https://docs.docker.com/engine/install/) on your host machine and run: ```bash