1234567891011121314151617181920212223242526 |
- FROM joystream/rust-builder AS builder
- LABEL description="compiles and caches dependencies, artifacts and node"
- WORKDIR /joystream
- COPY . /joystream
- RUN cargo build --release
- FROM debian:stretch
- LABEL description="Joystream node"
- WORKDIR /joystream
- COPY --from=builder /joystream/target/release/joystream-node /joystream/node
- RUN /joystream/node --version
- EXPOSE 30333 9933 9944
- VOLUME ["/data", "/keystore"]
- ENTRYPOINT ["/joystream/node"]
|