Files
karma/Dockerfile
Łukasz Mierzwa dc1ce44cfb Merge Dockerfile commands
This will help avoid unnecessary image layers
2017-03-26 17:41:17 -07:00

13 lines
216 B
Docker

FROM golang:alpine3.5
ADD . /go/src/github.com/cloudflare/unsee
ARG VERSION
RUN go install \
-ldflags "-X main.version=${VERSION:-dev}" \
github.com/cloudflare/unsee && \
rm -fr /go/src
CMD ["unsee"]