jpwahle commited on
Commit
c547531
1 Parent(s): 7574c0c

Update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -12,9 +12,8 @@ RUN mkdir -p /var/log/supervisor && chmod -R 777 /var/log/supervisor
12
  RUN mkdir -p /var/run/supervisor && chmod 777 /var/run/supervisor
13
 
14
  # Install supervisord and python (for gradio)
15
- RUN apt-get update && apt-get install -y supervisor python3 python3-pip && rm -rf /var/lib/apt/lists/*
16
  RUN pip3 install gradio
17
- RUN pip3 install git+https://github.com/kermitt2/grobid_client_python
18
  RUN pip3 install git+https://github.com/titipata/scipdf_parser
19
 
20
  # Copy your gradio app to the image
 
12
  RUN mkdir -p /var/run/supervisor && chmod 777 /var/run/supervisor
13
 
14
  # Install supervisord and python (for gradio)
15
+ RUN apt-get update && apt-get install -y supervisor python3 python3-pip git && rm -rf /var/lib/apt/lists/*
16
  RUN pip3 install gradio
 
17
  RUN pip3 install git+https://github.com/titipata/scipdf_parser
18
 
19
  # Copy your gradio app to the image