1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/Dockerfile

14 lines
300 B
Docker
Raw Normal View History

2019-07-05 16:54:48 +03:00
FROM golang:1.12-alpine as builder
RUN apk add --no-cache git make
RUN go get -v github.com/jteeuwen/go-bindata/go-bindata
WORKDIR /go/cowyo
COPY . .
RUN make build
2019-07-05 16:54:48 +03:00
FROM alpine:latest
VOLUME /data
2019-07-05 16:54:48 +03:00
EXPOSE 8152
COPY --from=builder /go/cowyo/cowyo /cowyo
ENTRYPOINT ["/cowyo"]
CMD ["--data","/data"]