Skip to content

Commit

Permalink
ci: site-builder dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdoret committed Oct 24, 2024
1 parent 1e20259 commit 8cf8fe2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions evaluation/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 8cf8fe2

Please sign in to comment.