mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-20 06:41:54 +01:00
24 lines
782 B
Docker
24 lines
782 B
Docker
FROM python:3.11-slim-bullseye
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y git cmake pkg-config libprotobuf-c-dev protobuf-compiler \
|
|
libprotobuf-dev libgoogle-perftools-dev libpq-dev build-essential cron curl \
|
|
supervisor \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY ./requirements/default.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt
|
|
RUN playwright install
|
|
RUN playwright install-deps
|
|
|
|
WORKDIR /app
|
|
COPY ./danswer /app/danswer
|
|
COPY ./alembic /app/alembic
|
|
COPY ./alembic.ini /app/alembic.ini
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
|
|
ENV PYTHONPATH /app
|
|
|
|
# By default this container does nothing, it is used by api server and background which specify their own CMD
|
|
CMD ["tail", "-f", "/dev/null"]
|