• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1FROM gcr.io/google_appengine/python-compat
2ADD . /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
8RUN apt-get update && apt-get install -y git libglib2.0-dev procps
9RUN sed -i '1ideb http://ftp.debian.org/debian experimental main' /etc/apt/sources.list
10RUN apt-get update && apt-get -y -t experimental install libc6
11
12RUN (cd /; git clone https://github.com/catapult-project/catapult.git)
13