1 FROM gcr.io/google_appengine/python-compat 2 ADD . /app 3 4 # Debian 7 doesn't have the right version of glibc, so we need to install. 5 # Ideally at some point, instead of using the appengine supplied python 6 # image, we could image our own ubuntu version. 7 # https://github.com/GoogleCloudPlatform/appengine-python-vm-runtime 8 RUN apt-get update && apt-get install -y git libglib2.0-dev procps 9 RUN sed -i '1ideb http://ftp.debian.org/debian experimental main' /etc/apt/sources.list 10 RUN apt-get update && apt-get -y -t experimental install libc6 11 12 RUN (cd /; git clone https://github.com/catapult-project/catapult.git) 13