diff --git a/cmd/soroban-rpc/docker/Dockerfile b/cmd/soroban-rpc/docker/Dockerfile index 0b0cc231..f1e6c078 100644 --- a/cmd/soroban-rpc/docker/Dockerfile +++ b/cmd/soroban-rpc/docker/Dockerfile @@ -2,11 +2,11 @@ FROM golang:1.21-bullseye as build ARG RUST_TOOLCHAIN_VERSION=stable ARG REPOSITORY_VERSION -WORKDIR /go/src/github.com/stellar/soroban-tools +WORKDIR /go/src/github.com/stellar/soroban-rpc ADD . ./ -RUN git config --global --add safe.directory "/go/src/github.com/stellar/soroban-tools" +RUN git config --global --add safe.directory "/go/src/github.com/stellar/soroban-rpc" ENV CARGO_HOME=/rust/.cargo ENV RUSTUP_HOME=/rust/.rust diff --git a/cmd/soroban-rpc/docker/Makefile b/cmd/soroban-rpc/docker/Makefile index b95af2b1..f3f39994 100644 --- a/cmd/soroban-rpc/docker/Makefile +++ b/cmd/soroban-rpc/docker/Makefile @@ -4,7 +4,7 @@ SUDO := $(shell docker version >/dev/null 2>&1 || echo "sudo") BUILD_DATE := $(shell date -u +%FT%TZ) # Extract latest release semver from GitHub -SOROBAN_RPC_LATEST_RELEASE := $(shell curl -sS https://api.github.com/repos/stellar/soroban-tools/releases/latest|jq -r ".tag_name"| tr -d "v" ) +SOROBAN_RPC_LATEST_RELEASE := $(shell curl -sS https://api.github.com/repos/stellar/soroban-rpc/releases/latest|jq -r ".tag_name"| tr -d "v" ) # If deb version was provided via the SOROBAN_RPC_VERSION variable use it. # If not get latest deb build matching release from GitHub diff --git a/cmd/soroban-rpc/internal/test/integration.go b/cmd/soroban-rpc/internal/test/integration.go index 60633b1f..8680a1cd 100644 --- a/cmd/soroban-rpc/internal/test/integration.go +++ b/cmd/soroban-rpc/internal/test/integration.go @@ -373,7 +373,7 @@ func findDockerComposePath() string { // if gopath := os.Getenv("GOPATH"); gopath != "" { - monorepo := filepath.Join(gopath, "src", "github.com", "stellar", "soroban-tools") + monorepo := filepath.Join(gopath, "src", "github.com", "stellar", "soroban-rpc") if _, err = os.Stat(monorepo); !os.IsNotExist(err) { current = monorepo }