wormhole/aptos/Dockerfile.base

24 lines
704 B
Docker
Raw Normal View History

2022-10-13 18:21:26 -07:00
FROM rust:1.62@sha256:5777f201f507075309c4d2d1c1e8d8219e654ae1de154c844341050016a64a0c as aptos-node
2022-12-12 13:50:00 -08:00
RUN apt-get update && apt-get -y install libclang-dev jq cmake curl npm gcc g++ make lld
2022-10-13 18:21:26 -07:00
WORKDIR /tmp
RUN git clone https://github.com/aptos-labs/aptos-core.git
WORKDIR /tmp/aptos-core
RUN cargo build -p aptos --profile cli
FROM rust:1.62@sha256:5777f201f507075309c4d2d1c1e8d8219e654ae1de154c844341050016a64a0c as export-stage
COPY --from=aptos-node /tmp/aptos-core/target/cli/aptos /usr/local/cargo/bin/aptos
RUN apt-get update && apt-get -y install npm
WORKDIR /tmp
RUN npm install -g n typescript ts-node
RUN n stable
COPY clients/js /tmp/clients/js
WORKDIR /tmp/clients/js
RUN make install