bbgo_origin/Dockerfile

31 lines
901 B
Docker
Raw Normal View History

2020-12-14 06:06:02 +00:00
# First stage container
FROM golang:1.15-alpine3.12 AS builder
RUN apk add --no-cache git ca-certificates gcc libc-dev pkgconfig
# gcc is for github.com/mattn/go-sqlite3
RUN go get -u github.com/c9s/goose/cmd/goose
2020-12-17 08:19:31 +00:00
# ADD . $GOPATH/src/github.com/c9s/bbgo
# WORKDIR $GOPATH/src/github.com/c9s/bbgo
2020-12-14 06:06:02 +00:00
WORKDIR $GOPATH/src/github.com/c9s/bbgo
2020-12-17 06:44:19 +00:00
ARG GO_MOD_CACHE
2020-12-17 08:19:31 +00:00
ENV WORKDIR=$GOPATH/src/github.com/c9s/bbgo
2020-12-17 06:44:19 +00:00
ENV GOPATH_ORIG=$GOPATH
2020-12-17 08:19:31 +00:00
ENV GOPATH=${GO_MOD_CACHE:+$WORKDIR/$GO_MOD_CACHE}
2020-12-17 06:44:19 +00:00
ENV GOPATH=${GOPATH:-$GOPATH_ORIG}
2020-12-17 08:19:31 +00:00
ADD . .
2020-12-17 06:44:19 +00:00
RUN go build -o $GOPATH_ORIG/bin/bbgo ./cmd/bbgo
2020-12-14 06:06:02 +00:00
# Second stage container
FROM alpine:3.12
# RUN apk add --no-cache ca-certificates
RUN mkdir /app
WORKDIR /app
COPY --from=builder /go/bin/goose /usr/local/bin
COPY --from=builder /go/bin/bbgo /usr/local/bin
ENTRYPOINT ["/usr/local/bin/bbgo"]
2020-12-15 10:57:46 +00:00
CMD ["run", "--config", "/config/bbgo.yaml", "--no-compile"]
2020-12-14 06:06:02 +00:00
# vim:filetype=dockerfile: