| 12345678910111213141516171819202122232425262728293031 | FROM python:2.7.15-stretchADD ./ /web2pyWORKDIR /web2pyRUN pip install -r /web2py/requirements.txtRUN git clone --recursive --branch master https://github.com/web2py/web2py.gitWORKDIR /web2py/web2py# The following commit is checked out in order to take advantage of several# bug fixes that were made after the latest stable release. This can be changed# in future rounds once a new stable release has been made.RUN git checkout 623f3b99477eb97ffadb20d6f7cb3da398253c9cWORKDIR /web2pyRUN cp -r app/standard/ web2py/applications/RUN cp -r app/optimized/ web2py/applications/RUN cp app/wsgi.py web2py/RUN cp app/routes.py web2py/RUN touch web2py/__init__.pyRUN python compile_apps.pyWORKDIR /web2pyEXPOSE 8080CMD gunicorn web2py.wsgi:application -c gunicorn_conf.py
 |