Spaces:
Runtime error
Runtime error
File size: 297 Bytes
5be3527 408528e 5be3527 408528e 5be3527 408528e 5be3527 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirement list and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all other files (including inference.py)
COPY . .
# Run the inference script directly
CMD ["python", "inference.py"] |