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.py", "--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