Merge pull request #11 from tinpee/master

Use explicitly python 3.5 image and automatically upgrade pip
This commit is contained in:
John Washam
2016-12-19 21:38:38 -08:00
committed by GitHub

View File

@@ -1,9 +1,10 @@
FROM python
FROM python:3.5
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