everycure-ner-pdf / Dockerfile
Luis Chaves
basic docker image
e13f3a2
raw
history blame
255 Bytes
FROM python:3.12-slim
WORKDIR /code
COPY ./pyproject.toml /code/
COPY ./README.md /code/
COPY ./src /code/src
COPY ./openapi.yaml /code/
RUN pip install --no-cache-dir .[all]
CMD ["uvicorn", "everycure.app:app", "--host", "0.0.0.0", "--port", "7860"]