opdx / Dockerfile
lyangas
init commit
6304a81
raw
history blame
292 Bytes
FROM python:3.8
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade -r /code/requirements.txt
COPY ./model_finetuned_clear.pkl ./model_finetuned_clear.pkl
COPY ./required_classes.py ./required_classes.py
COPY ./app.py ./app.py
CMD ["python", "app.py"]