FROM python:3.12-alpine
COPY . /app
WORKDIR /app
RUN pip install flask flask_cors
EXPOSE 5001
CMD ["python", "app.py"]