statping/Dockerfile

17 lines
307 B
Docker
Raw Normal View History

2018-06-19 00:01:03 +00:00
FROM golang: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/
2018-06-10 01:31:13 +00:00
2018-06-19 00:01:03 +00:00
COPY . $GOPATH/src/github.com/hunterlong/statup/
RUN go get github.com/GeertJohan/go.rice/rice
RUN go get -d -v
RUN rice embed-go
RUN go install
WORKDIR /app
2018-06-15 23:30:07 +00:00
VOLUME /app
2018-06-19 00:01:03 +00:00
EXPOSE 8080
2018-06-10 01:36:21 +00:00
ENTRYPOINT statup