Просмотр исходного кода

Update Dockerfile (#1314)

The line 28 contained the string "    pip install -r requirements-plugins.txt &&" which caused the error ```/bin/sh: 1: Syntax error: end of file unexpected
Service 'misago' failed to build: The command '/bin/sh -c pip install --upgrade pip &&     pip install -r requirements.txt &&     pip install -r requirements-plugins.txt &&' returned a non-zero code: 2```
Therefore, I removed the characters "&&" and solved. 
Finally, following my suggestion of modification on this Dockerfile. Thank you, Igor
Igor Monteiro 5 лет назад
Родитель
Сommit
58a0c45f82
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -25,7 +25,7 @@ ADD requirements-plugins.txt /
 
 RUN pip install --upgrade pip && \
     pip install -r requirements.txt && \
-    pip install -r requirements-plugins.txt &&
+    pip install -r requirements-plugins.txt
 
 WORKDIR /srv/misago