FROM python:3.10-slim WORKDIR /app # Copy requirements first for better caching COPY requirements.txt . # Install dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application COPY . . # Expose the port the app runs on EXPOSE 5003 # Command to run the application CMD ["python", "app.py"]