cherrypy-py3.dockerfile 123 B

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