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 -2
View File
@@ -14,8 +14,6 @@ RUN cd /go/src/github.com/aykevl/tinygo/ && \
dep ensure --vendor-only && \
go install /go/src/github.com/aykevl/tinygo/
ENTRYPOINT ["/go/bin/tinygo"]
# tinygo-wasm stage installs the needed dependencies to compile TinyGo programs for WASM.
FROM tinygo-base AS tinygo-wasm
@@ -79,3 +77,4 @@ RUN cd /go/src/github.com/aykevl/tinygo/ && \
apt-get autoremove -y && \
apt-get clean
CMD ["tinygo"]