Dockerfile, README, docs: Remove entrypoint

This was causing more trouble than it was helping,
so lets remove it.
This commit is contained in:
Johan Brandhorst
2018-12-13 09:39:03 +00:00
committed by Ayke van Laethem
parent cb648d8ae1
commit a830451426
3 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ See the [installation instructions](https://tinygo.readthedocs.io/en/latest/inst
A docker container exists for easy access to the `tinygo` CLI:
```sh
$ docker run --rm -v $(pwd):/src tinygo/tinygo build -o /src/wasm.wasm -target wasm examples/wasm
$ docker run --rm -v $(pwd):/src tinygo/tinygo tinygo build -o /src/wasm.wasm -target wasm examples/wasm
```
Note that you cannot run `tinygo flash` from inside the docker container,