diff --git a/Dockerfile b/Dockerfile index c5a143f..99f3850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,9 @@ -# This is an empty Dockerfile for the openhands-sandbox project \ No newline at end of file +FROM python:3.12-bookworm⁠ + +COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +RUN pip install pdm + +RUN apt-get update && apt-get install -y wget && wget https://github.com/hashicorp/copywrite/releases/download/v0.19.0/copywrite_0.19.0_linux_x86_64.tar.gz \ + && tar -xzf copywrite_0.19.0_linux_x86_64.tar.gz \ + && mv copywrite /usr/local/bin/ \ + && rm copywrite_0.19.0_linux_x86_64.tar.gz