feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies' Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk. Key changes include: - Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks. - Modified internal documentation and code comments to reflect PezkuwiChain naming and structure. - Replaced direct references to with or specific paths within the for XCM, Pezkuwi, and other modules. - Cleaned up deprecated issue and PR references in various and files, particularly in and modules. - Adjusted image and logo URLs in documentation to point to PezkuwiChain assets. - Removed or rephrased comments related to external Polkadot/Substrate PRs and issues. This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
# This is the build stage for Bizinikiwi. Here we create the binary.
|
||||
FROM docker.io/paritytech/ci-linux:production as builder
|
||||
|
||||
WORKDIR /bizinikiwi
|
||||
COPY . /bizinikiwi
|
||||
RUN cargo build --locked --release
|
||||
|
||||
# This is the 2nd stage: a very small image where we copy the Bizinikiwi binary."
|
||||
FROM docker.io/library/ubuntu:20.04
|
||||
LABEL description="Multistage Docker image for Bizinikiwi: a platform for web3" \
|
||||
io.parity.image.type="builder" \
|
||||
io.parity.image.authors="chevdor@gmail.com, devops-team@parity.io" \
|
||||
io.parity.image.vendor="Parity Technologies" \
|
||||
io.parity.image.description="Bizinikiwi is a next-generation framework for blockchain innovation 🚀" \
|
||||
io.parity.image.source="https://github.com/pezkuwichain/pezkuwichain-sdk/blob/${VCS_REF}/bizinikiwi/docker/substrate_builder.Dockerfile" \
|
||||
io.parity.image.documentation="https://github.com/pezkuwichain/pezkuwichain-sdk"
|
||||
|
||||
COPY --from=builder /bizinikiwi/target/release/bizinikiwi /usr/local/bin
|
||||
COPY --from=builder /bizinikiwi/target/release/subkey /usr/local/bin
|
||||
COPY --from=builder /bizinikiwi/target/release/node-template /usr/local/bin
|
||||
COPY --from=builder /bizinikiwi/target/release/chain-spec-builder /usr/local/bin
|
||||
|
||||
RUN useradd -m -u 1000 -U -s /bin/sh -d /bizinikiwi bizinikiwi && \
|
||||
mkdir -p /data /bizinikiwi/.local/share/bizinikiwi && \
|
||||
chown -R bizinikiwi:bizinikiwi /data && \
|
||||
ln -s /data /bizinikiwi/.local/share/bizinikiwi && \
|
||||
# Sanity checks
|
||||
ldd /usr/local/bin/bizinikiwi && \
|
||||
# unclutter and minimize the attack surface
|
||||
rm -rf /usr/bin /usr/sbin && \
|
||||
/usr/local/bin/bizinikiwi --version
|
||||
|
||||
USER bizinikiwi
|
||||
EXPOSE 30333 9933 9944 9615
|
||||
VOLUME ["/data"]
|
||||
Reference in New Issue
Block a user