-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
51 lines (40 loc) · 1.65 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
FROM python:3.8
RUN apt-get update -y && apt-get upgrade -y
# install google chrome
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
RUN apt-get -y update
RUN apt-get install -y google-chrome-stable
# install chromedriver
RUN apt-get install -yqq unzip
RUN wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip
RUN unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/
# set display port to avoid crash
ENV DISPLAY=:99
# upgrade pip
RUN pip install --upgrade pip
# 大陆内切换pip源加速
RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# MySQL相关依赖
RUN apt-get install libssl-dev libffi-dev libxml2-dev libxslt1-dev zlib1g-dev default-libmysqlclient-dev -y
# 安装中文字体
# ENV LANGUAGE zh_CN.UTF-8
# ENV LC_ALL zh_CN.UTF-8
# ENV LANG zh_CN.UTF-8
# ENV LC_TYPE zh_CN.UTF-8
RUN apt-get install -y locales locales-all
RUN locale-gen "zh_CN.UTF-8"
RUN update-locale LC_ALL=zh_CN.UTF-8
RUN export LC_ALL=zh_CN.UTF-8
# RUN apt-get install language-pack-zh-hans -y
RUN apt-get install chinese* -y
# install
RUN pip install selenium pyppeteer scrapy scrapyd scrapyd-client logparser
ADD . /code
WORKDIR /code
COPY ./scrapyd.conf /etc/scrapyd/
RUN pip install -r requirements.txt
RUN echo "Asia/Shanghai" > /etc/timezone && \
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN ["chmod", "777", "entrypoint.sh"]
ENTRYPOINT ["./entrypoint.sh"]