2018-07-12 23:22:19 +00:00
|
|
|
FROM golang:alpine AS build-env
|
|
|
|
|
|
|
|
# Set up dependencies
|
2020-03-18 12:43:02 +00:00
|
|
|
ENV PACKAGES git build-base
|
2018-07-12 23:22:19 +00:00
|
|
|
|
|
|
|
# Set working directory for the build
|
2020-03-18 12:43:02 +00:00
|
|
|
WORKDIR /go/src/github.com/Chainsafe/ethermint
|
2018-07-12 23:22:19 +00:00
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
RUN apk add --update $PACKAGES
|
|
|
|
|
|
|
|
# Add source files
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Make the binary
|
2020-03-18 12:43:02 +00:00
|
|
|
RUN make build
|
2018-07-12 23:22:19 +00:00
|
|
|
|
|
|
|
# Final image
|
2018-11-27 18:31:39 +00:00
|
|
|
FROM alpine
|
2018-07-12 23:22:19 +00:00
|
|
|
|
|
|
|
# Install ca-certificates
|
|
|
|
RUN apk add --update ca-certificates
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
# Copy over binaries from the build-env
|
2020-03-18 12:43:02 +00:00
|
|
|
COPY --from=build-env /go/src/github.com/Chainsafe/ethermint/build/emintd /usr/bin/emintd
|
|
|
|
COPY --from=build-env /go/src/github.com/Chainsafe/ethermint/build/emintcli /usr/bin/emintcli
|
2018-07-12 23:22:19 +00:00
|
|
|
|
2018-11-27 18:31:39 +00:00
|
|
|
# Run emintd by default
|
|
|
|
CMD ["emintd"]
|