fix: Complete rebrand fixes for dockerfiles, scripts, and service files

- Update all Dockerfile references from polkadot to pezkuwi
- Fix package names in scripts (pezpallet-*, pezframe-*)
- Update GitHub repository URLs to pezkuwichain/pezkuwi-sdk
- Fix template Dockerfiles (minimal, solochain, teyrchain)
- Update service file paths and binary names
- Fix path references from bizinikiwi/frame/ to bizinikiwi/pezframe/
This commit is contained in:
2025-12-20 03:07:55 +03:00
parent d9330bb392
commit a0f04820ab
26 changed files with 215 additions and 215 deletions
@@ -1,10 +1,10 @@
# This file is sourced from https://github.com/pezkuwichain/pezkuwichain-sdk/blob/master/docker/dockerfiles/test-parachain-collator.Dockerfile
# This file is sourced from https://github.com/pezkuwichain/pezkuwi-sdk/blob/master/docker/dockerfiles/test-teyrchain-collator.Dockerfile
FROM docker.io/paritytech/ci-linux:production as builder
WORKDIR /pezcumulus
COPY . /pezcumulus
RUN cargo build --release --locked -p polkadot-parachain
RUN cargo build --release --locked -p pezkuwi-teyrchain
# the collator stage is normally built once, cached, and then ignored, but can
# be specified with the --target build flag. This adds some extra tooling to the
@@ -23,7 +23,7 @@ RUN apt-get update && apt-get install jq curl bash -y && \
npm install --global yarn && \
yarn global add @polkadot/api-cli@0.10.0-beta.14
COPY --from=builder \
/paritytech/pezcumulus/target/release/polkadot-parachain /usr/bin
/paritytech/pezcumulus/target/release/pezkuwi-teyrchain /usr/bin
COPY ./docker/scripts/inject_bootnodes.sh /usr/bin
CMD ["/usr/bin/inject_bootnodes.sh"]
COPY ./docker/scripts/healthcheck.sh /usr/bin/
@@ -35,12 +35,12 @@ HEALTHCHECK --interval=300s --timeout=75s --start-period=30s --retries=3 \
# outputs, which can then be moved into a volume at runtime
FROM debian:buster-slim as runtime
COPY --from=builder \
/paritytech/pezcumulus/target/release/wbuild/pezcumulus-test-parachain-runtime/cumulus_test_parachain_runtime.compact.wasm \
/paritytech/pezcumulus/target/release/wbuild/pezcumulus-test-teyrchain-runtime/pezcumulus_test_teyrchain_runtime.compact.wasm \
/var/opt/
CMD ["cp", "-v", "/var/opt/cumulus_test_parachain_runtime.compact.wasm", "/runtime/"]
CMD ["cp", "-v", "/var/opt/pezcumulus_test_teyrchain_runtime.compact.wasm", "/runtime/"]
FROM debian:buster-slim
COPY --from=builder \
/paritytech/pezcumulus/target/release/polkadot-parachain /usr/bin
/paritytech/pezcumulus/target/release/pezkuwi-teyrchain /usr/bin
CMD ["/usr/bin/polkadot-parachain"]
CMD ["/usr/bin/pezkuwi-teyrchain"]