# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2 FROM docker.io/library/rust:1.49@sha256:a50165ea96983c21832578afb1c8c028674c965bc1ed43b607871b1f362e06a5 AS build RUN apt-get update && apt-get install -y libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang RUN rustup component add rustfmt RUN rustup default nightly-2021-08-01 WORKDIR /usr/src/bridge RUN cargo install wasm-pack --vers 0.9.1 ENV RUST_LOG="solana_runtime::system_instruction_processor=trace,solana_runtime::message_processor=trace,solana_bpf_loader=debug,solana_rbpf=debug" ENV EMITTER_ADDRESS="11111111111111111111111111111115" ENV BRIDGE_ADDRESS="Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o" COPY bridge bridge COPY modules modules COPY solitaire solitaire COPY migration migration COPY pyth2wormhole pyth2wormhole # Compile Wormhole RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=bridge/target \ cd bridge/program && /usr/local/cargo/bin/wasm-pack build --target bundler -d bundler -- --features wasm RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=bridge/target \ cd bridge/program && /usr/local/cargo/bin/wasm-pack build --target nodejs -d nodejs -- --features wasm # Compile Token Bridge RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=modules/token_bridge/target \ cd modules/token_bridge/program && /usr/local/cargo/bin/wasm-pack build --target bundler -d bundler -- --features wasm RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=modules/token_bridge/target \ cd modules/token_bridge/program && /usr/local/cargo/bin/wasm-pack build --target nodejs -d nodejs -- --features wasm # Compile Migration RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=migration/target \ cd migration && /usr/local/cargo/bin/wasm-pack build --target bundler -d bundler -- --features wasm RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=migration/target \ cd migration && /usr/local/cargo/bin/wasm-pack build --target nodejs -d nodejs -- --features wasm # Compile NFT Bridge RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=modules/nft_bridge/target \ cd modules/nft_bridge/program && /usr/local/cargo/bin/wasm-pack build --target bundler -d bundler -- --features wasm RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=modules/nft_bridge/target \ cd modules/nft_bridge/program && /usr/local/cargo/bin/wasm-pack build --target nodejs -d nodejs -- --features wasm # Compile pyth2wormhole RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=pyth2wormhole/target \ cd pyth2wormhole/program \ && /usr/local/cargo/bin/wasm-pack build --target bundler -d bundler -- --features wasm RUN --mount=type=cache,target=/root/.cache \ --mount=type=cache,target=pyth2wormhole/target \ cd pyth2wormhole/program \ && /usr/local/cargo/bin/wasm-pack build --target nodejs -d nodejs -- --features wasm FROM scratch AS export COPY --from=build /usr/src/bridge/bridge/program/bundler sdk/js/src/solana/core COPY --from=build /usr/src/bridge/modules/token_bridge/program/bundler sdk/js/src/solana/token COPY --from=build /usr/src/bridge/migration/bundler sdk/js/src/solana/migration COPY --from=build /usr/src/bridge/modules/nft_bridge/program/bundler sdk/js/src/solana/nft COPY --from=build /usr/src/bridge/pyth2wormhole/program/bundler third_party/pyth/p2w-sdk/src/solana/p2w-core COPY --from=build /usr/src/bridge/bridge/program/bundler explorer/wasm/core COPY --from=build /usr/src/bridge/modules/token_bridge/program/bundler explorer/wasm/token COPY --from=build /usr/src/bridge/modules/nft_bridge/program/bundler explorer/wasm/nft COPY --from=build /usr/src/bridge/bridge/program/bundler third_party/pyth/p2w-sdk/src/solana/wormhole-core COPY --from=build /usr/src/bridge/bridge/program/nodejs sdk/js/src/solana/core-node COPY --from=build /usr/src/bridge/modules/token_bridge/program/nodejs sdk/js/src/solana/token-node COPY --from=build /usr/src/bridge/migration/nodejs sdk/js/src/solana/migration-node COPY --from=build /usr/src/bridge/modules/nft_bridge/program/nodejs sdk/js/src/solana/nft-node COPY --from=build /usr/src/bridge/bridge/program/nodejs clients/solana/pkg COPY --from=build /usr/src/bridge/bridge/program/nodejs clients/token_bridge/pkg/core COPY --from=build /usr/src/bridge/bridge/program/nodejs clients/nft_bridge/pkg/core COPY --from=build /usr/src/bridge/modules/token_bridge/program/nodejs clients/token_bridge/pkg/token COPY --from=build /usr/src/bridge/modules/nft_bridge/program/nodejs clients/nft_bridge/pkg/nft