Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ testing_scripts*
# tests
.coverage
/.tox/
/.cache/


# sphinx
Expand Down
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ RUN apt-get update && \
RUN mkdir -p /scrapyrt/src /scrapyrt/project
RUN mkdir -p /var/log/scrapyrt

RUN wget "https://bootstrap.pypa.io/get-pip.py"
RUN python get-pip.py
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

ADD . /scrapyrt/src
RUN pip install /scrapyrt/src

WORKDIR /scrapyrt/project

Expand Down