File size: 594 Bytes
4688db5
 
 
524d66e
 
 
 
 
6cd06cc
4688db5
 
 
3b524e7
4688db5
 
 
 
524d66e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.10.10

RUN python3 -m pip install --no-cache-dir --upgrade pip

# Copy the requirements.txt file into the Docker image
COPY requirements.txt .

# Now the requirements.txt file will be available in the image
RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.txt

COPY . .

CMD ["panel", "serve", "/GPT-4_PDF_summary.ipynb", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "chomakov-gpt-4-pdf-summary.hf.space:7860", "--allow-websocket-origin", "0.0.0.0:7860"]

RUN mkdir /.cache
RUN chmod 777 /.cache
RUN mkdir .chroma
RUN chmod 777 .chroma