cherrypy.dockerfile 122 B

123456789
  1. FROM python:2.7.14
  2. ADD ./ /cherrypy
  3. WORKDIR /cherrypy
  4. RUN pip install -r /cherrypy/requirements.txt
  5. CMD python app.py