12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- FROM rust:1.52.1-buster AS rust
- RUN rustup self update
- RUN rustup install nightly-2021-02-20 --force
- RUN rustup default nightly-2021-02-20
- RUN rustup target add wasm32-unknown-unknown --toolchain nightly-2021-02-20
- RUN rustup component add --toolchain nightly-2021-02-20 clippy
- RUN apt-get update && \
- apt-get install -y curl git gcc xz-utils sudo pkg-config unzip clang llvm libc6-dev
- FROM rust AS builder
- LABEL description="Compiles all workspace artifacts"
- WORKDIR /joystream
- COPY . /joystream
- ENV WASM_BUILD_TOOLCHAIN=nightly-2021-02-20
- RUN BUILD_DUMMY_WASM_BINARY=1 cargo clippy --release --all -- -D warnings && \
- cargo test --release --all && \
- cargo build --release
- FROM ubuntu:21.04
- LABEL description="Joystream node"
- WORKDIR /joystream
- COPY --from=builder /joystream/target/release/joystream-node /joystream/node
- COPY --from=builder /joystream/target/release/wbuild/joystream-node-runtime/joystream_node_runtime.compact.wasm /joystream/runtime.compact.wasm
- COPY --from=builder /joystream/target/release/chain-spec-builder /joystream/chain-spec-builder
- RUN /joystream/node --version
- RUN b2sum -l 256 /joystream/runtime.compact.wasm
- RUN b2sum -l 512 /joystream/runtime.compact.wasm
- EXPOSE 30333 9933 9944
- VOLUME ["/data", "/keystore"]
- ENTRYPOINT ["/joystream/node"]
|