-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified dockerfile, merged makefile and added entrypoint.sh script
- Loading branch information
Showing
3 changed files
with
46 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.20.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,50 @@ | ||
FROM golang:1.20 AS build-env | ||
# ------------------------------------------------------------------------------ | ||
# Build gaia | ||
# ------------------------------------------------------------------------------ | ||
FROM golang:1.20 AS cosmos | ||
|
||
# Set working directory for the build | ||
WORKDIR /go/src/github.com/cosmos/rosetta | ||
ARG COSMOS_VERSION | ||
|
||
RUN git clone https://github.com/cosmos/cosmos-sdk \ | ||
/go/src/github.com/cosmos/cosmos-sdk | ||
|
||
WORKDIR /go/src/github.com/cosmos/cosmos-sdk | ||
|
||
RUN git checkout v0.50.2 && make build | ||
RUN export SIMD_BIN=/go/src/github.com/cosmos/cosmos-sdk/build/simd && make init-simapp | ||
|
||
# ------------------------------------------------------------------------------ | ||
# Build rosetta | ||
# ------------------------------------------------------------------------------ | ||
FROM golang:1.21.5 AS rosetta | ||
|
||
# optimization: if go.sum didn't change, docker will use cached image | ||
COPY go.mod go.sum ./ | ||
ARG ROSETTA_VERSION | ||
|
||
RUN go mod download | ||
RUN git clone https://github.com/cosmos/rosetta.git \ | ||
/go/src/github.com/cosmos/rosetta | ||
|
||
# Add source files | ||
COPY . . | ||
WORKDIR /go/src/github.com/cosmos/rosetta | ||
|
||
RUN git checkout $ROSETTA_VERSION && \ | ||
go mod download | ||
|
||
RUN make build | ||
RUN make plugin | ||
RUN cd plugins/cosmos-hub && make plugin | ||
|
||
COPY --from=cosmos \ | ||
/go/src/github.com/cosmos/cosmos-sdk/build/simd \ | ||
/app/simd | ||
|
||
COPY --from=cosmos \ | ||
/root/.simapp \ | ||
/root/.simapp | ||
|
||
ADD scripts/entrypoint.sh /scripts/entrypoint.sh | ||
RUN chmod +x /scripts/entrypoint.sh | ||
|
||
EXPOSE 9650 | ||
EXPOSE 9651 | ||
EXPOSE 8080 | ||
|
||
# Run simd by default | ||
CMD ["./rosetta", "--blockchain", "app", "--network", "network", "--tendermint", "cosmos:26657", "--grpc", "cosmos:9090", "--addr", ":8080"] | ||
ENTRYPOINT ["./rosetta"] | ||
ENTRYPOINT ["sh","/scripts/entrypoint.sh"] | ||
STOPSIGNAL SIGTERM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/app/simd start & | ||
until curl --output /dev/null --silent --head --fail http://localhost:26657/health; do | ||
sleep 1 | ||
done | ||
./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090" |