statping/Dockerfile

17 lines
313 B
Docker
Raw Normal View History

2018-06-23 06:03:24 +00:00
FROM golang:1.10.3-alpine
2018-06-10 01:31:13 +00:00
2018-06-19 00:01:03 +00:00
RUN apk update && apk add git g++
2018-06-15 21:13:19 +00:00
2018-06-19 00:01:03 +00:00
WORKDIR $GOPATH/src/github.com/hunterlong/statup/
RUN go get github.com/GeertJohan/go.rice/rice
2018-06-23 19:21:00 +00:00
COPY . $GOPATH/src/github.com/hunterlong/statup/
RUN go get
2018-06-19 00:01:03 +00:00
RUN rice embed-go
RUN go install
2018-06-23 06:34:26 +00:00
2018-06-19 00:01:03 +00:00
WORKDIR /app
2018-06-15 23:30:07 +00:00
VOLUME /app
2018-06-19 00:01:03 +00:00
EXPOSE 8080
2018-06-23 06:11:07 +00:00
CMD ["/go/bin/statup"]