This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |