icd10_docker / Dockerfile
lyangas
fix dockerfile
1efad19
raw
history blame
291 Bytes
FROM python:3.8
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade -r /code/requirements.txt
COPY ./embedder ./embedder
COPY ./classifiers ./classifiers
COPY ./required_classes.py ./required_classes.py
COPY ./app.py ./app.py
CMD ["python", "app.py"]