Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(927)

Side by Side Diff: appengine/chrome_infra_mon_proxy/docker/Dockerfile

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Responded to comments Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698