Initial commit

This commit is contained in:
emile
2015-09-22 18:40:30 +02:00
commit c422047cf9
5 changed files with 69 additions and 0 deletions

5
Dockerfile Normal file
View File

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