12306/Dockerfile

14 lines
245 B
Docker
Raw Normal View History

2018-12-25 02:38:39 +00:00
FROM python:2.7.15
WORKDIR /usr/src/app
2018-12-25 03:47:20 +00:00
ADD . /usr/src/app
2018-12-25 02:38:39 +00:00
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Asia/Shanghai
RUN pip install --no-cache-dir -r requirements.txt
#EXPOSE 5010
#CMD [ "python", "run.py" ]
ENTRYPOINT [ "python", "run.py" ]