mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 04:41:02 +00:00
chore: refresh of the substrate_builder image (#9808)
* chore: refresh of the substrate_builder image fix #9715 * chore: renaming + build script * Fix spaces/tabs * Add doc * Remove non binary * Update docker/substrate_builder.Dockerfile Co-authored-by: Denis Pisarev <denis.pisarev@parity.io>
This commit is contained in:
@@ -1,59 +0,0 @@
|
||||
# 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.11 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 stable && \
|
||||
cargo build "--$PROFILE"
|
||||
|
||||
# ===== SECOND STAGE ======
|
||||
|
||||
FROM phusion/baseimage:0.11
|
||||
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/ && \
|
||||
useradd -m -u 1000 -U -s /bin/sh -d /substrate substrate && \
|
||||
mkdir -p /substrate/.local/share/substrate && \
|
||||
chown -R substrate:substrate /substrate/.local && \
|
||||
ln -s /substrate/.local/share/substrate /data
|
||||
|
||||
COPY --from=builder /substrate/target/$PROFILE/substrate /usr/local/bin
|
||||
COPY --from=builder /substrate/target/$PROFILE/subkey /usr/local/bin
|
||||
COPY --from=builder /substrate/target/$PROFILE/node-rpc-client /usr/local/bin
|
||||
COPY --from=builder /substrate/target/$PROFILE/node-template /usr/local/bin
|
||||
COPY --from=builder /substrate/target/$PROFILE/chain-spec-builder /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 9615
|
||||
VOLUME ["/data"]
|
||||
|
||||
CMD ["/usr/local/bin/substrate"]
|
||||
Reference in New Issue
Block a user