mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 08:02:03 +03:00
72c92b1a54
* feat(bard): added * docs(readme): update * chore(print): removed
14 lines
339 B
Docker
14 lines
339 B
Docker
FROM python:3.11-buster
|
|
|
|
# Install GEOS library
|
|
RUN apt-get update && apt-get install -y libgeos-dev
|
|
|
|
WORKDIR /code
|
|
|
|
COPY ./requirements.txt /code/requirements.txt
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt --timeout 100
|
|
|
|
COPY . /code/
|
|
|
|
CMD ["uvicorn", "api:app", "--reload", "--host", "0.0.0.0", "--port", "5050"] |