You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-06 22:23:10 +02:00
add scrapyd:py3 (FIX #36)
This commit is contained in:
63
scrapyd/py3/Dockerfile
Normal file
63
scrapyd/py3/Dockerfile
Normal file
@ -0,0 +1,63 @@
|
||||
#
|
||||
# Dockerfile for scrapyd:py3
|
||||
#
|
||||
|
||||
FROM debian:jessie
|
||||
MAINTAINER kev <noreply@easypi.info>
|
||||
|
||||
RUN set -xe \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y autoconf \
|
||||
build-essential \
|
||||
curl \
|
||||
git \
|
||||
libffi-dev \
|
||||
libssl-dev \
|
||||
libtool \
|
||||
libxml2 \
|
||||
libxml2-dev \
|
||||
libxslt1.1 \
|
||||
libxslt1-dev \
|
||||
python3 \
|
||||
python3-dev \
|
||||
vim-tiny \
|
||||
&& apt-get install -y libtiff5 \
|
||||
libtiff5-dev \
|
||||
libfreetype6-dev \
|
||||
libjpeg62-turbo \
|
||||
libjpeg62-turbo-dev \
|
||||
liblcms2-2 \
|
||||
liblcms2-dev \
|
||||
libwebp5 \
|
||||
libwebp-dev \
|
||||
zlib1g \
|
||||
zlib1g-dev \
|
||||
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
|
||||
&& pip install git+https://github.com/scrapy/scrapy.git \
|
||||
git+https://github.com/scrapy/scrapyd.git \
|
||||
git+https://github.com/scrapy/scrapyd-client.git \
|
||||
git+https://github.com/scrapinghub/scrapy-splash.git \
|
||||
git+https://github.com/python-pillow/Pillow.git \
|
||||
&& 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 purge -y --auto-remove autoconf \
|
||||
build-essential \
|
||||
libffi-dev \
|
||||
libssl-dev \
|
||||
libtool \
|
||||
libxml2-dev \
|
||||
libxslt1-dev \
|
||||
python3-dev \
|
||||
&& apt-get purge -y --auto-remove libtiff5-dev \
|
||||
libfreetype6-dev \
|
||||
libjpeg62-turbo-dev \
|
||||
liblcms2-dev \
|
||||
libwebp-dev \
|
||||
zlib1g-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY ./scrapyd.conf /etc/scrapyd/
|
||||
VOLUME /etc/scrapyd/ /var/lib/scrapyd/
|
||||
EXPOSE 6800
|
||||
|
||||
CMD ["scrapyd"]
|
Reference in New Issue
Block a user