# Use official Python image FROM python:3.9-slim # Set working directory WORKDIR /app # Copy requirements and install dependencies COPY requirements.txt requirements.txt RUN pip install --no-cache-dir -r requirements.txt # Copy app files COPY . . # Expose the port the app runs on EXPOSE 5000 # Run the Flask server CMD ["python", "app.py"]