statping-ng/Dockerfile

17 lines
313 B
Docker

FROM golang:1.10.3-alpine
RUN apk update && apk add git g++
WORKDIR $GOPATH/src/github.com/hunterlong/statup/
RUN go get github.com/GeertJohan/go.rice/rice
COPY . $GOPATH/src/github.com/hunterlong/statup/
RUN go get
RUN rice embed-go
RUN go install
WORKDIR /app
VOLUME /app
EXPOSE 8080
CMD ["/go/bin/statup"]