diff --git a/evaluation/Dockerfile b/evaluation/Dockerfile new file mode 100644 index 0000000..a040586 --- /dev/null +++ b/evaluation/Dockerfile @@ -0,0 +1,17 @@ +# Use an official Python runtime as a parent image +FROM python:3.12-slim + +# Set the working directory in the container +WORKDIR . + +# Copy the requirements.txt file into the container +COPY requirements.txt . + +# Install any needed packages specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the rest of the application code into the container +COPY . . + +# Command to run the evaluator.py script +CMD ["python", "__main__.py"]