xnetba/ChatPDF
0
1FROM python:3.10-slim2 3WORKDIR /code4 5ENV PYTHONUNBUFFERED=1 \6 PYTHONDONTWRITEBYTECODE=1 \7 PIP_NO_CACHE_DIR=off \8 PIP_DISABLE_PIP_VERSION_CHECK=on \9 PIP_DEFAULT_TIMEOUT=100 \10 HNSWLIB_NO_NATIVE=111 12RUN apt-get update && apt install python3-dev libprotobuf-dev build-essential -y13 14COPY . .15RUN pip install --upgrade pip16RUN pip install duckdb17RUN pip install -r requirements.txt18EXPOSE 807119CMD ["gradio", "app.py"]