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

Side by Side Diff: appengine/chrome_infra_mon_proxy/scripts/loadtest_docker/Dockerfile_base

Issue 928043005: Monitoring proxy for time series data (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: More fine-tuning 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 ubuntu image with load test code.
2 FROM ubuntu
3
4 # Install dev tools to compile C-accelerated python modules.
5 RUN apt-get -y update
6 RUN apt-get -y upgrade
7 RUN apt-get -y install build-essential
8 RUN apt-get -y install python-dev
9 RUN apt-get -y install python-pip
10
11 # Required by pyopenssl (but we install pycrypto instead).
12 # RUN apt-get -y install libffi-dev
13
14 RUN pip install --upgrade setuptools
15
16 # One of these is required by
17 # oauth2client.client.SignedJwtAssertionCredentials.
18 # RUN pip install --upgrade pyopenssl
19 RUN pip install --upgrade pycrypto
20
21 RUN pip install --upgrade oauth2client
22 # Installed by oauth2client
23 # RUN pip install --upgrade httplib2
ghost stip (do not use) 2015/04/14 00:36:43 remove lines 22 / 23
Sergey Berezin (google) 2015/04/16 04:39:07 Done.
24 RUN pip install --upgrade google-api-python-client
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698