Skip to content

Instantly share code, notes, and snippets.

@theacodes
Created February 24, 2016 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theacodes/1a58e2f0b4941647f969 to your computer and use it in GitHub Desktop.
Save theacodes/1a58e2f0b4941647f969 to your computer and use it in GitHub Desktop.
scipy on MVMs
FROM gcr.io/google_appengine/python-compat-multicore
# Install scipy dependences
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python-scipy
# Add app code
ADD . /app/
# Install requirements
RUN if [ -s requirements.txt ]; then pip install -r requirements.txt; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment