Spaces:
Runtime error
Runtime error
File size: 309 Bytes
d195308 b7a676b d195308 b7a676b d195308 b7a676b d195308 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Use official Python slim image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy all files
COPY . .
# Expose port 5000 (Flask default)
EXPOSE 5000
# Run the start script
CMD ["./start.sh"]
|