• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5FROM gcr.io/google_appengine/python-compat
6
7# The Python standard runtime is based on Debian Wheezy. Use Stretch to get SciPy 0.16.
8RUN echo "deb http://gce_debian_mirror.storage.googleapis.com stretch main" >> /etc/apt/sources.list
9RUN apt-get update && apt-get install -y -t stretch python-numpy python-scipy
10
11ADD . /app
12