npc0 commited on
Commit
352db54
·
verified ·
1 Parent(s): 8889e4a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -12,8 +12,12 @@ 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 git clone https://github.com/SWI-Prolog/packages-swipy.git
16
- RUN copy packages-swipy/janus/janus.pl janus.pl
 
17
  RUN echo 1 | swipl pack install janus
18
  RUN python -c "import janus_swi as janus"
19
 
 
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-*.zip
16
+ RUN find / -name janus-*.tgz
17
+
18
  RUN git clone https://github.com/SWI-Prolog/packages-swipy.git
19
+ RUN mv packages-swipy/janus/janus.pl .
20
+ RUN rm -r packages-swipy
21
  RUN echo 1 | swipl pack install janus
22
  RUN python -c "import janus_swi as janus"
23