2014-12-01 15:19:37 +02:00
|
|
|
#
|
2015-05-30 13:47:20 +02:00
|
|
|
# Dockerfile for scrapyd
|
2014-12-01 15:19:37 +02:00
|
|
|
#
|
|
|
|
|
2015-05-28 15:34:50 +02:00
|
|
|
FROM debian:jessie
|
2015-05-28 01:21:59 +02:00
|
|
|
MAINTAINER kev <noreply@datageek.info>
|
2014-12-01 15:19:37 +02:00
|
|
|
|
2015-05-28 15:34:50 +02:00
|
|
|
RUN apt-get update \
|
|
|
|
&& 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 \
|
|
|
|
python \
|
2015-05-28 01:21:59 +02:00
|
|
|
python-dev \
|
2015-05-28 15:34:50 +02:00
|
|
|
vim-tiny \
|
|
|
|
&& mkdir libxml2 \
|
|
|
|
&& curl -sSL ftp://xmlsoft.org/libxml2/libxml2-2.9.2.tar.gz | tar xz --strip 1 -C libxml2 \
|
|
|
|
&& cd libxml2 \
|
|
|
|
&& ./configure --prefix=/usr \
|
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& ldconfig \
|
|
|
|
&& cd .. \
|
|
|
|
&& rm -rf libxml2 \
|
|
|
|
&& mkdir libxslt \
|
|
|
|
&& curl -sSL https://git.gnome.org/browse/libxslt/snapshot/libxslt-1.1.28.tar.xz | tar xJ --strip 1 -C libxslt \
|
|
|
|
&& cd libxslt \
|
|
|
|
&& ./autogen.sh --prefix=/usr \
|
|
|
|
&& make \
|
|
|
|
&& make install \
|
|
|
|
&& ldconfig \
|
|
|
|
&& cd .. \
|
|
|
|
&& rm -rf libxslt \
|
|
|
|
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
|
2015-06-02 10:20:05 +02:00
|
|
|
&& pip install git+https://github.com/scrapy/scrapy.git \
|
|
|
|
git+https://github.com/scrapy/scrapyd.git \
|
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 \
|
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 \
|
|
|
|
libffi-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
|
|
|
python-dev \
|
2015-05-28 01:30:09 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2015-05-28 01:21:59 +02:00
|
|
|
|
2015-05-29 03:19:56 +02:00
|
|
|
ADD ./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
|
|
|
|
2015-05-28 17:11:37 +02:00
|
|
|
CMD ["scrapyd"]
|