Fix dockerfile

This commit is contained in:
Jack Zampolin 2018-11-27 10:31:39 -08:00
parent abbe17db25
commit 46272dff58

View File

@ -16,14 +16,14 @@ COPY . .
RUN make tools deps build RUN make tools deps build
# Final image # Final image
FROM alpine:edge FROM alpine
# Install ca-certificates # Install ca-certificates
RUN apk add --update ca-certificates RUN apk add --update ca-certificates
WORKDIR /root WORKDIR /root
# Copy over binaries from the build-env # Copy over binaries from the build-env
COPY --from=build-env /go/src/github.com/cosmos/ethermint/build/ethermint /usr/bin/ethermint COPY --from=build-env /go/src/github.com/cosmos/ethermint/build/emintd /usr/bin/emintd
# Run ethermint by default # Run emintd by default
CMD ["ethermint"] CMD ["emintd"]