mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-07 21:18:01 +00:00
60e5011c72
* Adding first rough ouline of the repository structure * Remove old CI stuff * add title * formatting fixes * move node-exits job's script to scripts dir * Move docs into subdir * move to bin * move maintainence scripts, configs and helpers into its own dir * add .local to ignore * move core->client * start up 'test' area * move test client * move test runtime * make test move compile * Add dependencies rule enforcement. * Fix indexing. * Update docs to reflect latest changes * Moving /srml->/paint * update docs * move client/sr-* -> primitives/ * clean old readme * remove old broken code in rhd * update lock * Step 1. * starting to untangle client * Fix after merge. * start splitting out client interfaces * move children and blockchain interfaces * Move trie and state-machine to primitives. * Fix WASM builds. * fixing broken imports * more interface moves * move backend and light to interfaces * move CallExecutor * move cli off client * moving around more interfaces * re-add consensus crates into the mix * fix subkey path * relieve client from executor * starting to pull out client from grandpa * move is_decendent_of out of client * grandpa still depends on client directly * lemme tests pass * rename srml->paint * Make it compile. * rename interfaces->client-api * Move keyring to primitives. * fixup libp2p dep * fix broken use * allow dependency enforcement to fail * move fork-tree * Moving wasm-builder * make env * move build-script-utils * fixup broken crate depdencies and names * fix imports for authority discovery * fix typo * update cargo.lock * fixing imports * Fix paths and add missing crates * re-add missing crates
56 lines
1.6 KiB
Docker
56 lines
1.6 KiB
Docker
# Note: We don't use Alpine and its packaged Rust/Cargo because they're too often out of date,
|
|
# preventing them from being used to build Substrate/Polkadot.
|
|
|
|
FROM phusion/baseimage:0.10.2 as builder
|
|
LABEL maintainer="chevdor@gmail.com"
|
|
LABEL description="This is the build stage for Substrate. Here we create the binary."
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
ARG PROFILE=release
|
|
WORKDIR /substrate
|
|
|
|
COPY . /substrate
|
|
|
|
RUN apt-get update && \
|
|
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confold" && \
|
|
apt-get install -y cmake pkg-config libssl-dev git clang
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \
|
|
export PATH="$PATH:$HOME/.cargo/bin" && \
|
|
rustup toolchain install nightly && \
|
|
rustup target add wasm32-unknown-unknown --toolchain nightly && \
|
|
rustup default nightly && \
|
|
rustup default stable && \
|
|
cargo build "--$PROFILE"
|
|
|
|
# ===== SECOND STAGE ======
|
|
|
|
FROM phusion/baseimage:0.10.2
|
|
LABEL maintainer="chevdor@gmail.com"
|
|
LABEL description="This is the 2nd stage: a very small image where we copy the Substrate binary."
|
|
ARG PROFILE=release
|
|
|
|
RUN mv /usr/share/ca* /tmp && \
|
|
rm -rf /usr/share/* && \
|
|
mv /tmp/ca-certificates /usr/share/ && \
|
|
mkdir -p /root/.local/share/Polkadot && \
|
|
ln -s /root/.local/share/Polkadot /data && \
|
|
useradd -m -u 1000 -U -s /bin/sh -d /substrate substrate
|
|
|
|
COPY --from=builder /substrate/target/$PROFILE/substrate /usr/local/bin
|
|
|
|
# checks
|
|
RUN ldd /usr/local/bin/substrate && \
|
|
/usr/local/bin/substrate --version
|
|
|
|
# Shrinking
|
|
RUN rm -rf /usr/lib/python* && \
|
|
rm -rf /usr/bin /usr/sbin /usr/share/man
|
|
|
|
USER substrate
|
|
EXPOSE 30333 9933 9944
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/usr/local/bin/substrate"]
|