diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..31590b5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM frolvlad/alpine-python2 + +COPY AndroLabServer / + +RUN pip2 install flask +RUN pip2 install flask-sqlalchemy +RUN pip2 install simplejson +RUN pip2 install cherrypy +RUN pip2 install web.py + +CMD [ "python", "app.py" ]