36 lines
894 B
Docker
36 lines
894 B
Docker
FROM cli-gen AS cli-export
|
|
FROM const-gen AS const-export
|
|
FROM ghcr.io/wormhole-foundation/aptos:1.0.4_2@sha256:020ff492894ad93fd5ad94f75c93e791b191983d0f40fe7dae793758fd0f96f9 as aptos
|
|
|
|
# Support additional root CAs
|
|
COPY cert.pem* /certs/
|
|
RUN if [ -e /certs/cert.pem ]; then cp /certs/cert.pem /etc/ssl/certs/ca-certificates.crt; fi
|
|
|
|
# Install nodejs
|
|
# todo(aki): move this into base image?
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && apt-get update && apt-get install -y nodejs
|
|
|
|
WORKDIR /tmp
|
|
|
|
COPY wormhole/ wormhole
|
|
COPY token_bridge/ token_bridge
|
|
COPY nft_bridge/ nft_bridge
|
|
COPY deployer/ deployer
|
|
COPY coin/ coin
|
|
COPY examples/ examples
|
|
COPY Makefile Makefile
|
|
COPY scripts scripts
|
|
COPY start_node.sh start_node.sh
|
|
COPY --from=const-export .env .env
|
|
COPY --from=cli-export clients/js /cli
|
|
|
|
WORKDIR /cli
|
|
|
|
RUN npm link
|
|
|
|
FROM aptos AS tests
|
|
|
|
WORKDIR /tmp
|
|
|
|
RUN make test
|