Very rudimentary Python support

Create a python environment.  Only supports GET; doesn't support any
parameters etc. yet.  Basically just enough for a hello world demo.
This commit is contained in:
Soam Vasani
2016-11-09 10:02:03 -08:00
parent 8de691b914
commit 1a86078fc0
4 changed files with 47 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
FROM python:3-onbuild
CMD [ "python", "./server.py" ]
EXPOSE 8888