Dockerfile.client 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. #syntax=docker/dockerfile:1.2@sha256:e2a8561e419ab1ba6b2fe6cbdf49fd92b95912df1cf7d313c3e2230a333fdbcc
  2. FROM ghcr.io/certusone/solana:1.10.31@sha256:d31e8db926a1d3fbaa9d9211d9979023692614b7b64912651aba0383e8c01bad AS solana
  3. ARG WORMHOLE_TAG=v2.8.9
  4. # libudev is needed by spl-token-cli, and ncat is needed by the devnet setup
  5. # script to be able to signal a health status for tilt
  6. RUN apt-get update && apt-get install -yq libudev-dev ncat
  7. RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
  8. ADD wormhole_attester/rust-toolchain /rust-toolchain
  9. WORKDIR /usr/src/bridge-client
  10. RUN --mount=type=cache,target=/root/.cache \
  11. --mount=type=cache,target=/usr/local/cargo/registry \
  12. --mount=type=cache,target=target \
  13. cargo install --version =2.0.12 --locked spl-token-cli --target-dir target
  14. RUN solana config set --keypair "/solana-secrets/solana-devnet.json"
  15. RUN solana config set --url "http://solana-devnet:8899"
  16. ENV EMITTER_ADDRESS="11111111111111111111111111111115"
  17. ENV BRIDGE_ADDRESS="Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o"
  18. RUN --mount=type=cache,target=/root/.cache \
  19. --mount=type=cache,target=/usr/local/cargo/registry \
  20. --mount=type=cache,target=target \
  21. set -xe && \
  22. cargo install bridge_client --git https://github.com/wormhole-foundation/wormhole --tag $WORMHOLE_TAG --locked --root /usr/local --target-dir target && \
  23. cargo install token_bridge_client --git https://github.com/wormhole-foundation/wormhole --tag $WORMHOLE_TAG --locked --root /usr/local --target-dir target
  24. ADD tilt_devnet/scripts/solana-devnet-setup.sh /usr/src/solana-devnet-setup.sh
  25. ADD tilt_devnet/secrets/solana/ /solana-secrets