Home | History | Annotate | Download | only in update
      1 # Copyright 2015 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 FROM gcr.io/google_appengine/python-compat
      6 
      7 # The Python standard runtime is based on Debian Wheezy. Use Stretch to get SciPy 0.16.
      8 RUN echo "deb http://gce_debian_mirror.storage.googleapis.com stretch main" >> /etc/apt/sources.list
      9 RUN apt-get update && apt-get install -y -t stretch python-numpy python-scipy
     10 
     11 ADD . /app
     12