FROM python:3.10-slim WORKDIR /app COPY app.py . RUN pip install Flask flask_sqlalchemy psycopg2-binary flask-cors CMD ["python", "app.py"]