2025-01-06 19:55:30 +01:00
|
|
|
FROM python:3.13-slim
|
2025-01-03 14:18:54 +01:00
|
|
|
|
|
|
|
# Set the working directory
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Copy the requirements file
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
|
|
|
# Install any needed packages
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
# Copy the application code into the container
|
|
|
|
COPY setup.py setup.py
|
|
|
|
|
|
|
|
CMD ["python", "setup.py"]
|