2014-12-01 15:19:37 +02:00
|
|
|
#
|
2020-07-10 05:52:01 +02:00
|
|
|
# Dockerfile for scrapyd (python2)
|
2014-12-01 15:19:37 +02:00
|
|
|
#
|
|
|
|
|
2020-05-26 11:31:46 +02:00
|
|
|
FROM debian:buster
|
|
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
|
|
|
|
ENV SCRAPY_VERSION=1.8.0
|
|
|
|
ENV SCRAPYD_VERSION=1.2.1
|
2021-03-29 09:39:47 +02:00
|
|
|
ENV SCRAPYRT_VERSION=0.11.0
|
2020-05-26 11:31:46 +02:00
|
|
|
ENV PILLOW_VERSION=6.2.2
|
2014-12-01 15:19:37 +02:00
|
|
|
|
2016-05-26 14:30:59 +02:00
|
|
|
RUN set -xe \
|
|
|
|
&& apt-get update \
|
2015-05-28 15:34:50 +02:00
|
|
|
&& apt-get install -y autoconf \
|
2015-05-28 01:21:59 +02:00
|
|
|
build-essential \
|
2015-05-28 15:34:50 +02:00
|
|
|
curl \
|
2015-05-28 17:29:07 +02:00
|
|
|
git \
|
2015-05-28 15:34:50 +02:00
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
2016-05-26 14:46:51 +02:00
|
|
|
libxml2 \
|
|
|
|
libxml2-dev \
|
|
|
|
libxslt1.1 \
|
|
|
|
libxslt1-dev \
|
2015-05-28 15:34:50 +02:00
|
|
|
python \
|
2015-05-28 01:21:59 +02:00
|
|
|
python-dev \
|
2015-05-28 15:34:50 +02:00
|
|
|
vim-tiny \
|
2016-05-26 14:30:59 +02:00
|
|
|
&& apt-get install -y libtiff5 \
|
|
|
|
libtiff5-dev \
|
|
|
|
libfreetype6-dev \
|
|
|
|
libjpeg62-turbo \
|
|
|
|
libjpeg62-turbo-dev \
|
|
|
|
liblcms2-2 \
|
|
|
|
liblcms2-dev \
|
2018-01-23 17:01:57 +02:00
|
|
|
libwebp6 \
|
2016-05-26 14:30:59 +02:00
|
|
|
libwebp-dev \
|
|
|
|
zlib1g \
|
|
|
|
zlib1g-dev \
|
2015-05-28 15:34:50 +02:00
|
|
|
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
|
2021-07-01 21:32:49 +02:00
|
|
|
&& pip install --no-cache-dir git+https://github.com/scrapy/scrapy.git@$SCRAPY_VERSION \
|
2020-05-26 11:31:46 +02:00
|
|
|
git+https://github.com/scrapy/scrapyd.git@$SCRAPYD_VERSION \
|
2015-06-20 11:29:44 +02:00
|
|
|
git+https://github.com/scrapy/scrapyd-client.git \
|
2015-09-20 12:19:43 +02:00
|
|
|
git+https://github.com/scrapinghub/scrapy-splash.git \
|
2021-03-29 09:39:47 +02:00
|
|
|
git+https://github.com/scrapinghub/scrapyrt.git@$SCRAPYRT_VERSION \
|
2020-05-26 11:31:46 +02:00
|
|
|
git+https://github.com/python-pillow/Pillow.git@$PILLOW_VERSION \
|
2015-05-28 15:34:50 +02:00
|
|
|
&& 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 \
|
2015-06-20 11:12:04 +02:00
|
|
|
&& apt-get purge -y --auto-remove autoconf \
|
|
|
|
build-essential \
|
2020-05-29 06:11:32 +02:00
|
|
|
curl \
|
2015-06-20 11:12:04 +02:00
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
2016-05-26 14:46:51 +02:00
|
|
|
libxml2-dev \
|
|
|
|
libxslt1-dev \
|
2015-06-20 11:12:04 +02:00
|
|
|
python-dev \
|
2016-05-26 14:30:59 +02:00
|
|
|
&& apt-get purge -y --auto-remove libtiff5-dev \
|
|
|
|
libfreetype6-dev \
|
|
|
|
libjpeg62-turbo-dev \
|
|
|
|
liblcms2-dev \
|
|
|
|
libwebp-dev \
|
|
|
|
zlib1g-dev \
|
2015-05-28 01:30:09 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2015-05-28 01:21:59 +02:00
|
|
|
|
2016-05-26 14:30:59 +02:00
|
|
|
COPY ./scrapyd.conf /etc/scrapyd/
|
2015-05-28 17:11:37 +02:00
|
|
|
VOLUME /etc/scrapyd/ /var/lib/scrapyd/
|
|
|
|
EXPOSE 6800
|
2014-12-01 15:19:37 +02:00
|
|
|
|
2017-04-04 05:55:25 +02:00
|
|
|
CMD ["scrapyd", "--pidfile="]
|