Skip to content

Commit

Permalink
Update images
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Warehime committed Aug 13, 2024
1 parent 626d699 commit 81efcea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions contrib/images/connect.e2e.Dockerfile
Original file line number Diff line number Diff line change
@@ -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 .

Expand All @@ -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/
2 changes: 1 addition & 1 deletion contrib/images/connect.sidecar.dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
2 changes: 1 addition & 1 deletion contrib/images/connect.sidecar.e2e.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]

0 comments on commit 81efcea

Please sign in to comment.