Skip to content

Instantly share code, notes, and snippets.

@theacodes
Created October 14, 2014 14:21
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/cf1cd6679a983810f73d to your computer and use it in GitHub Desktop.
Save theacodes/cf1cd6679a983810f73d to your computer and use it in GitHub Desktop.
Example python dockerfile (managed vms)
# Dockerfile extending the generic Python image with application files for a
# single application.
FROM google/appengine-python27
ADD requirements.txt /app/
RUN pip install -r requirements.txt
ADD . /app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment