Dockerfile 496 B

12345678910111213141516
  1. FROM python:3.9
  2. # Set the working directory
  3. WORKDIR /app
  4. # Install Python dependencies
  5. RUN pip install anthropic config datasets docker gymnasium numpy openai pandas rich ruamel.yaml swebench tenacity unidiff simple-parsing together ollama
  6. # Install Docker CLI using the official Docker installation script
  7. RUN curl -fsSL https://get.docker.com -o get-docker.sh && \
  8. sh get-docker.sh
  9. # Copy the application code
  10. # Do this last to take advantage of the docker layer mechanism
  11. COPY . /app