#syntax=docker/dockerfile:1.2@sha256:e2a8561e419ab1ba6b2fe6cbdf49fd92b95912df1cf7d313c3e2230a333fdbcc FROM ghcr.io/certusone/solana:1.10.31@sha256:d31e8db926a1d3fbaa9d9211d9979023692614b7b64912651aba0383e8c01bad AS solana RUN apt-get update && apt-get install -yq python3 libudev-dev ncat RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs ADD pythnet/remote-executor /usr/src/pythnet/remote-executor ADD third_party/pyth/pyth_utils.py /usr/src/pyth/pyth_utils.py ADD third_party/pyth/p2w_autoattest.py /usr/src/pyth/p2w_autoattest.py ADD third_party/pyth/p2w-sdk/rust /usr/src/third_party/pyth/p2w-sdk/rust ADD solana /usr/src/solana WORKDIR /usr/src/solana/pyth2wormhole ENV EMITTER_ADDRESS="11111111111111111111111111111115" ENV BRIDGE_ADDRESS="Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o" RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=target \ cargo test --package pyth2wormhole-client && \ cargo build --package pyth2wormhole-client && \ mv target/debug/pyth2wormhole-client /usr/local/bin/pyth2wormhole-client && \ chmod a+rx /usr/src/pyth/*.py ENV P2W_OWNER_KEYPAIR="/usr/src/solana/keys/p2w_owner.json" ENV P2W_ATTESTATIONS_PORT="4343" ENV PYTH_PUBLISHER_KEYPAIR="/usr/src/solana/keys/pyth_publisher.json" ENV PYTH_PROGRAM_KEYPAIR="/usr/src/solana/keys/pyth_program.json" ENV SOL_AIRDROP_AMT="100"