Fixed the container name (#8)

* Fixed the container name
* whoamI -> whoami
This commit is contained in:
Gérald Croës
2018-08-06 17:05:34 +02:00
committed by Emile Vauge
parent c039b48727
commit 585d48ff07
5 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
# Create a minimal container to run a Golang static binary
FROM scratch
COPY whoamI /
ENTRYPOINT ["/whoamI"]
COPY whoami /
ENTRYPOINT ["/whoami"]
EXPOSE 80