mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
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
13 lines
219 B
Docker
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"]
|