View Google App Engine on Docker for Development
# start from a python 2 official image | |
FROM python:2 | |
# install unzip, download and unzip google app engine | |
RUN apt-get update \ | |
&& apt-get install -y unzip \ | |
&& wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.40.zip -P /tmp \ | |
&& unzip -q /tmp/google_appengine_1.9.40.zip -d /opt > /dev/null | |
# expose application and admin port |