1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-08-08 22:27:53 +02:00

update scrapyd

This commit is contained in:
kev
2021-10-15 11:21:09 +08:00
parent a4a5ab945d
commit 6a006e6815
2 changed files with 10 additions and 9 deletions

View File

@ -2,13 +2,14 @@
# Dockerfile for scrapyd-arm (python3)
#
FROM arm32v7/debian:buster
FROM debian:bullseye
MAINTAINER EasyPi Software Foundation
ENV SCRAPY_VERSION=2.5.0
ENV SCRAPY_VERSION=2.5.1
ENV SCRAPYD_VERSION=1.2.1
ENV SCRAPYD_CLIENT_VERSION=v1.2.0
ENV SCRAPYRT_VERSION=v0.12
ENV PILLOW_VERSION=8.2.0
ENV PILLOW_VERSION=8.3.2
RUN set -xe \
&& apt-get update \
@ -41,7 +42,7 @@ RUN set -xe \
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
&& pip install --no-cache-dir git+https://github.com/scrapy/scrapy.git@$SCRAPY_VERSION \
git+https://github.com/scrapy/scrapyd.git@$SCRAPYD_VERSION \
git+https://github.com/scrapy/scrapyd-client.git \
git+https://github.com/scrapy/scrapyd-client.git@$SCRAPYD_CLIENT_VERSION \
git+https://github.com/scrapinghub/scrapy-splash.git \
git+https://github.com/scrapinghub/scrapyrt.git@$SCRAPYRT_VERSION \
git+https://github.com/python-pillow/Pillow.git@$PILLOW_VERSION \