#syntax=docker/dockerfile:1

FROM ubuntu:latest

RUN apt-get update && apt-get install -y python3 python3-pip

COPY requirements.txt requirements.txt

RUN pip3 install -r requirements.txt

CMD [ "python3", "-m", "spacy", "download", "en_core_web_sm" ]

CMD [ "python3", "wsgi.py", "--debug" ]