Skip to content

Instantly share code, notes, and snippets.

@theacodes
Created October 14, 2014 14:21
Show Gist options
  • Select an option

  • Save theacodes/cf1cd6679a983810f73d to your computer and use it in GitHub Desktop.

Select an option

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