GPT-4_PDF_compare / Dockerfile
standardteam's picture
Duplicate from chomakov/GPT-4_PDF_summary
1dee7f2
FROM python:3.9
COPY ./requirements.txt /requirements.txt
RUN python3 -m pip install --no-cache-dir --upgrade pip
RUN python3 -m pip install --no-cache-dir --upgrade -r /requirements.txt
COPY . .
CMD ["panel", "serve", "GPT-4_PDF_summary.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "chomakov-gpt-4-pdf-summary.hf.space", "--allow-websocket-origin", "0.0.0.0:7860"]
RUN mkdir /.cache
RUN chmod 777 /.cache
RUN mkdir .chroma
RUN chmod 777 .chroma