document_loaders / Dockerfile
HoneyTian's picture
first commit
e94100d
raw
history blame
262 Bytes
FROM python:3.12-slim
WORKDIR /code
COPY . /code
RUN apt-get update
RUN apt-get install -y libicu-dev
RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
USER root
RUN chmod -R 777 .
CMD ["python3", "main.py"]