python2 app base image
FROM python:2.7.15
MAINTAINER [email protected]
WORKDIR /data/src
ADD requirements.txt requirements.txt
RUN pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com \
&& pip install supervisor -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com \
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ADD supervisor.conf /etc/supervisor/supervisor.conf
EXPOSE 9001
CMD supervisord -nc /etc/supervisor/supervisor.conf
Content type
Image
Digest
Size
336.8 MB
Last updated
over 7 years ago
docker pull wuyue/python2-app