diff --git a/Dockerfile b/Dockerfile index cb75c98..d07d330 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM golang:1.12.1-alpine as builder -WORKDIR /go/src/git.trj.tw/golang/mtfosbot +WORKDIR /data RUN apk add --no-cache make git \ && go get -u github.com/otakukaze/go-bindata/... COPY . . @@ -8,7 +8,7 @@ RUN make FROM alpine:latest RUN apk add --no-cache ca-certificates WORKDIR /data -COPY --from=builder /go/src/git.trj.tw/golang/mtfosbot/mtfosbot /usr/bin +COPY --from=builder /data/mtfosbot /usr/bin COPY config.default.yml config.yml EXPOSE 10230 CMD ["/usr/bin/mtfosbot", "-f", "/data/config.yml", "-dbtool"]