FROM python:3.11-slim WORKDIR /app RUN pip install --no-cache-dir flask flask-sqlalchemy pymysql cryptography EXPOSE 5000 CMD ["python", "run.py"]