OLD | NEW |
(Empty) | |
| 1 # Dockerfile extending the generic Python image with application files for a |
| 2 # single application. |
| 3 FROM google/appengine-python27 |
| 4 |
| 5 # Install dev tools to compile C-accelerated python modules. |
| 6 RUN apt-get -y update |
| 7 RUN apt-get -y upgrade |
| 8 RUN apt-get -y install build-essential |
| 9 RUN apt-get -y install python-dev |
| 10 |
| 11 # Required by pyopenssl. |
| 12 RUN apt-get -y install libffi-dev |
| 13 RUN pip install --upgrade setuptools |
| 14 |
| 15 # Required by oauth2client.client.SignedJwtAssertionCredentials. |
| 16 RUN pip install --upgrade pyopenssl |
| 17 |
| 18 RUN pip install --upgrade google-api-python-client |
OLD | NEW |