Files
karma/Dockerfile
Łukasz Mierzwa f8420d4632 Use go-bindata-assetfs for static files
This allows unsee to be compiled into a single self-contained binary, without any need to external static files or templates
2017-03-26 17:41:17 -07:00

14 lines
212 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
RUN rm -fr /go/src
CMD ["unsee"]