fix docker build error

This commit is contained in:
Jay 2019-04-01 09:20:25 +00:00
parent 4077e19f34
commit c986453dca
1 changed files with 2 additions and 2 deletions

View File

@ -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"]