Files
karma/Dockerfile
Łukasz Mierzwa 9ce559d5d1 Use Go 1.8 for the base image
Current image uses Go 1.7.5, there was an issue with haml templates preventing us from using 1.8 but it was fixed, so we should switch to latest Go version
2017-03-26 19:00:16 -07:00

13 lines
219 B
Docker

FROM golang:1.8.0-alpine
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"]