Spaces:
Sleeping
Sleeping
File size: 322 Bytes
fb78c46 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Stable base image (avoids Docker Hub auth issues)
FROM python:3.9-slim-buster
# Set working directory
WORKDIR /app
# Copy all files
COPY . .
# Upgrade pip
RUN pip install --no-cache-dir --upgrade pip
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run start script
CMD ["bash", "run.sh"] |