Closed gbraad closed 8 years ago
I created PR #10 to correct an issue with the current docker build .; The build passes, but the resulting image misses python. On run docker run -it --rm [imageid] it will not start python -mSimpleHTTPServer.
docker build .
python
docker run -it --rm [imageid]
python -mSimpleHTTPServer
Thanks!
I created PR #10 to correct an issue with the current
docker build .
; The build passes, but the resulting image missespython
. On rundocker run -it --rm [imageid]
it will not startpython -mSimpleHTTPServer
.