diff --git a/contrib/images/connect.e2e.Dockerfile b/contrib/images/connect.e2e.Dockerfile index 44323f854..6c53f4896 100644 --- a/contrib/images/connect.e2e.Dockerfile +++ b/contrib/images/connect.e2e.Dockerfile @@ -1,6 +1,6 @@ -FROM ghcr.io/skip-mev/slinky-dev-base AS builder +FROM ghcr.io/skip-mev/connect-dev-base AS builder -WORKDIR /src/slinky +WORKDIR /src/connect COPY go.mod . @@ -12,11 +12,11 @@ RUN make build-test-app ## Prepare the final clear binary ## This will expose the tendermint and cosmos ports alongside -## starting up the sim app and the slinky daemon +## starting up the sim app and the connect daemon FROM ubuntu:rolling EXPOSE 26656 26657 1317 9090 7171 26655 8081 26660 RUN apt-get update && apt-get install jq -y && apt-get install ca-certificates -y -ENTRYPOINT ["slinkyd", "start"] +ENTRYPOINT ["connectd", "start"] -COPY --from=builder /src/slinky/build/* /usr/local/bin/ +COPY --from=builder /src/connect/build/* /usr/local/bin/ diff --git a/contrib/images/connect.sidecar.dev.Dockerfile b/contrib/images/connect.sidecar.dev.Dockerfile index 882ade265..164e40b2b 100644 --- a/contrib/images/connect.sidecar.dev.Dockerfile +++ b/contrib/images/connect.sidecar.dev.Dockerfile @@ -17,4 +17,4 @@ COPY --from=builder /src/connect/build/* /usr/local/bin/ RUN apt-get update && apt-get install jq -y && apt-get install ca-certificates -y WORKDIR /usr/local/bin/ -ENTRYPOINT [ "slinky" ] +ENTRYPOINT [ "connect" ] diff --git a/contrib/images/connect.sidecar.e2e.Dockerfile b/contrib/images/connect.sidecar.e2e.Dockerfile index eb705e3e6..9a8d1bc12 100644 --- a/contrib/images/connect.sidecar.e2e.Dockerfile +++ b/contrib/images/connect.sidecar.e2e.Dockerfile @@ -17,4 +17,4 @@ COPY --from=builder /src/connect/build/* /usr/local/bin/ RUN apt-get update && apt-get install -y ca-certificates WORKDIR /usr/local/bin/ -ENTRYPOINT [ "slinky" ] +ENTRYPOINT [ "connect" ]