Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
|
@@ -12,10 +12,8 @@ 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
|
| 16 |
-
RUN
|
| 17 |
-
RUN python --version
|
| 18 |
-
RUN python -m pip install janus_swi
|
| 19 |
RUN echo 1 | swipl pack install janus
|
| 20 |
RUN python -c "import janus_swi as janus"
|
| 21 |
|
|
|
|
| 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 |
|