Spaces:
Runtime error
Runtime error
File size: 247 Bytes
dd8d9f1 a86d293 dd8d9f1 a86d293 dd8d9f1 a86d293 dd8d9f1 a86d293 dd8d9f1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
# Copy and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
# Expose Flask port
EXPOSE 5000
# Start Flask app
CMD ["python", "app.py"] |