npc0 commited on
Commit
355259d
·
verified ·
1 Parent(s): 5fb407c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -12,11 +12,10 @@ COPY ./requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade pip
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
- RUN find / -name janus-*.tgz
16
-
17
  RUN git clone https://github.com/SWI-Prolog/packages-swipy.git
18
  RUN mv packages-swipy/janus/janus.pl .
19
  RUN rm -r packages-swipy
 
20
  RUN echo 1 | swipl pack install janus
21
  RUN python -c "import janus_swi as janus"
22
 
 
12
  RUN pip install --no-cache-dir --upgrade pip
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
 
 
15
  RUN git clone https://github.com/SWI-Prolog/packages-swipy.git
16
  RUN mv packages-swipy/janus/janus.pl .
17
  RUN rm -r packages-swipy
18
+ RUN zip janus.zip janus.pl
19
  RUN echo 1 | swipl pack install janus
20
  RUN python -c "import janus_swi as janus"
21