| Index: appengine/chrome_infra_mon_proxy/docker/Dockerfile
|
| diff --git a/appengine/chrome_infra_mon_proxy/docker/Dockerfile b/appengine/chrome_infra_mon_proxy/docker/Dockerfile
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3a83574ddeda09e1fe2af1f995534df2972db0a1
|
| --- /dev/null
|
| +++ b/appengine/chrome_infra_mon_proxy/docker/Dockerfile
|
| @@ -0,0 +1,18 @@
|
| +# Dockerfile extending the generic Python image with application files for a
|
| +# single application.
|
| +FROM google/appengine-python27
|
| +
|
| +# Install dev tools to compile C-accelerated python modules.
|
| +RUN apt-get -y update
|
| +RUN apt-get -y upgrade
|
| +RUN apt-get -y install build-essential
|
| +RUN apt-get -y install python-dev
|
| +
|
| +# Required by pyopenssl.
|
| +RUN apt-get -y install libffi-dev
|
| +RUN pip install --upgrade setuptools
|
| +
|
| +# Required by oauth2client.client.SignedJwtAssertionCredentials.
|
| +RUN pip install --upgrade pyopenssl
|
| +
|
| +RUN pip install --upgrade google-api-python-client
|
|
|