FROM tiangolo/uwsgi-nginx-flask:python3.12

COPY ./app /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

EXPOSE 80