We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c08a046 + 2f23dbc commit 6441ee8Copy full SHA for 6441ee8
.gitignore
@@ -28,6 +28,7 @@ testing_scripts*
28
# tests
29
.coverage
30
/.tox/
31
+/.cache/
32
33
34
# sphinx
Dockerfile
@@ -19,9 +19,12 @@ RUN apt-get update && \
19
RUN mkdir -p /scrapyrt/src /scrapyrt/project
20
RUN mkdir -p /var/log/scrapyrt
21
22
-RUN wget "https://bootstrap.pypa.io/get-pip.py"
23
-RUN python get-pip.py
24
-RUN pip install scrapyrt
+RUN wget -O /tmp/get-pip.py "https://bootstrap.pypa.io/get-pip.py" && \
+ python /tmp/get-pip.py "pip==9.0.1" && \
+ rm /tmp/get-pip.py
25
+
26
+ADD . /scrapyrt/src
27
+RUN pip install /scrapyrt/src
WORKDIR /scrapyrt/project
0 commit comments