npc0 commited on
Commit
89e4920
·
verified ·
1 Parent(s): b0256e9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -8,8 +8,9 @@ WORKDIR /app
8
 
9
  COPY ./knowledge_base.pl knowledge_base.pl
10
  RUN pip install --no-cache-dir --upgrade pip
11
- RUN pip install --no-cache-dir --upgrade gradio
12
- RUN pip install --no-cache-dir --upgrade "git+https://github.com/yuce/pyswip@master#egg=pyswip"
 
13
 
14
  COPY . /app
15
  EXPOSE 7860
 
8
 
9
  COPY ./knowledge_base.pl knowledge_base.pl
10
  RUN pip install --no-cache-dir --upgrade pip
11
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
12
+
13
+ RUN python -c "import janus_swi as janus"
14
 
15
  COPY . /app
16
  EXPOSE 7860