Files
karma/Dockerfile
2017-05-30 12:51:05 +01:00

15 lines
233 B
Docker

FROM golang:1.8.1-alpine
COPY . /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
EXPOSE 8080
CMD ["unsee"]