Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
12 |
-
|
|
|
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
|