File size: 580 Bytes
5e4510c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Use an official Python image as the base
FROM python:3.12-slim
# Set the working directory inside the container
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy the project files into the container
COPY . /app
# Install Python dependencies
RUN pip install --root-user-action=ignore -e .
# Expose the project directory as a volume
VOLUME ["/app"]
# Set the entry point to the openevolve-run.py script
ENTRYPOINT ["python", "/app/openevolve-run.py"] |