FROM ghcr.io/qregistry/standard/python:3.9

WORKDIR "/app"

COPY [".", "/app"]
RUN pip install -r requirements.txt

ENV FLASK_APP=api.py
ENV FLASK_ENV=development

CMD ["flask", "run", "--host=0.0.0.0"]
