Spaces:
Sleeping
Sleeping
File size: 310 Bytes
d103a0f f56b653 d103a0f f56b653 d103a0f f56b653 d103a0f f56b653 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM python:3.11-slim
WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt .
# Install dependencies using pip
RUN pip install --no-cache-dir -r requirements.txt
# Copy all files
COPY . .
# Make sure app.py is executable
RUN chmod +x app.py
EXPOSE 7860
CMD ["python", "app.py"] |