Files
fission-src/environments/python3/Dockerfile
T
Soam Vasani 1a86078fc0 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.
2016-11-09 10:02:03 -08:00

4 lines
66 B
Docker

FROM python:3-onbuild
CMD [ "python", "./server.py" ]
EXPOSE 8888