Files
traefik-whoami/Dockerfile
2015-09-22 18:40:30 +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