Add Dockerfile

This commit is contained in:
TiLorn 2019-01-24 16:30:29 +03:00
parent e8d4b720f1
commit 2d38139a7b

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM golang:alpine
RUN apk update && \
apk add git --no-cache && \
go get github.com/whyrusleeping/ipfs-key
CMD ["ipfs-key"]