update pip in Dockerfile

This commit is contained in:
tinpee
2016-12-20 05:55:44 +07:00
parent 1b3eb172b9
commit a415d59912

View File

@@ -3,7 +3,8 @@ MAINTAINER Tinpee <tinpee.dev@gmail.com>
ADD . /src
WORKDIR /src
RUN pip install flask gunicorn
RUN pip install --upgrade pip \
&& pip install flask gunicorn
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh