* feat: update rosetta sdk to v0.6.10 embed from v1.0.0 release branch of the library: https://github.com/tendermint/cosmos-rosetta-gateway/tree/release/v1.0.0 closes: https://github.com/cosmos/cosmos-sdk/issues/9300 Co-authored-by: Alessio Treglia <alessio@tendermint.com>
19 lines
410 B
Docker
19 lines
410 B
Docker
FROM golang:1.15-alpine as build
|
|
|
|
RUN apk add git gcc libc-dev --no-cache
|
|
|
|
ARG ROSETTA_VERSION="v0.6.7"
|
|
|
|
# build rosetta CLI
|
|
WORKDIR /rosetta
|
|
RUN git clone https://github.com/coinbase/rosetta-cli .
|
|
RUN git checkout tags/$ROSETTA_VERSION
|
|
RUN go build -o rosetta-cli ./main.go
|
|
|
|
FROM alpine
|
|
RUN apk add gcc libc-dev python3 --no-cache
|
|
|
|
ENV PATH=$PATH:/bin
|
|
|
|
COPY --from=build /rosetta/rosetta-cli /bin/rosetta-cli
|