FROM python:3.9-slim WORKDIR /app COPY . /app/ RUN pip install flask mysql-connector-python EXPOSE 5000 CMD ["python", "app.py"]