mirror of https://github.com/testerSunshine/12306
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
778 B
25 lines
778 B
FROM python:2.7.15
|
|
WORKDIR /usr/src/app
|
|
ADD . /usr/src/app
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV TZ Asia/Shanghai
|
|
|
|
|
|
## install python requirements
|
|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyspider --no-cache-dir -r requirements.txt
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
## install ntpdate, not accept but saving code
|
|
#RUN echo 'deb http://mirrors.163.com/debian/ jessie main non-free contrib \
|
|
# deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib \
|
|
# deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib' > /etc/apt/sources.list \
|
|
# && apt-get update\
|
|
# && apt-get install ntpdate -y \
|
|
|
|
|
|
#EXPOSE 5010
|
|
|
|
CMD [ "python", "run.py" ]
|
|
#ENTRYPOINT [ "python", "run.py" ]
|