Spaces:
Running
Running
File size: 254 Bytes
826d4db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.11-slim
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the cleanup script
COPY cleanup.py .
# Run the cleanup job
CMD ["python", "cleanup.py"]
|