diff --git a/scrapyd/Dockerfile b/scrapyd/Dockerfile index 42636f0..61c29d6 100644 --- a/scrapyd/Dockerfile +++ b/scrapyd/Dockerfile @@ -35,7 +35,9 @@ RUN apt-get update \ && cd .. \ && rm -rf libxslt \ && curl -sSL https://bootstrap.pypa.io/get-pip.py | python \ - && pip install scrapy==0.24.6 scrapyd==1.0.1 service_identity \ + && pip install git+https://github.com/scrapy/scrapy.git \ + git+https://github.com/scrapy/scrapyd.git \ + service_identity \ && curl -sSL https://github.com/scrapy/scrapy/raw/master/extras/scrapy_bash_completion -o /etc/bash_completion.d/scrapy_bash_completion \ && echo 'source /etc/bash_completion.d/scrapy_bash_completion' >> /root/.bashrc \ && apt-get remove -y autoconf \