Files
traefik-whoami/Dockerfile
Gérald Croës 585d48ff07 Fixed the container name (#8)
* Fixed the container name
* whoamI -> whoami
2018-08-06 17:05:34 +02:00

6 lines
119 B
Docker

# Create a minimal container to run a Golang static binary
FROM scratch
COPY whoami /
ENTRYPOINT ["/whoami"]
EXPOSE 80