a0f04820ab
- 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/
60 lines
2.3 KiB
Docker
60 lines
2.3 KiB
Docker
# this image is built on top of existing Zombienet image
|
|
ARG ZOMBIENET_IMAGE
|
|
# this image uses bizinikiwi-relay image built elsewhere
|
|
ARG SUBSTRATE_RELAY_IMAGE=docker.io/paritytech/bizinikiwi-relay:v1.8.0
|
|
|
|
# metadata
|
|
ARG VCS_REF
|
|
ARG BUILD_DATE
|
|
ARG IMAGE_NAME
|
|
|
|
# we need `bizinikiwi-relay` binary, built elsewhere
|
|
FROM ${SUBSTRATE_RELAY_IMAGE} as relay-builder
|
|
|
|
# the base image is the zombienet image - we are planning to run zombienet tests using native
|
|
# provider here
|
|
FROM ${ZOMBIENET_IMAGE}
|
|
|
|
LABEL io.parity.image.authors="devops-team@parity.io" \
|
|
io.parity.image.vendor="Parity Technologies" \
|
|
io.parity.image.title="${IMAGE_NAME}" \
|
|
io.parity.image.description="Bridges Zombienet tests." \
|
|
io.parity.image.source="https://github.com/pezkuwichain/pezkuwi-sdk/blob/${VCS_REF}/docker/dockerfiles/bridges_zombienet_tests_injected.Dockerfile" \
|
|
io.parity.image.revision="${VCS_REF}" \
|
|
io.parity.image.created="${BUILD_DATE}" \
|
|
io.parity.image.documentation="https://github.com/pezkuwichain/pezkuwi-sdk/pezbridges/testing"
|
|
|
|
# show backtraces
|
|
ENV RUST_BACKTRACE 1
|
|
USER root
|
|
|
|
# for native provider to work (TODO: fix in zn docker?)
|
|
RUN apt-get update && apt-get install -y procps sudo
|
|
RUN yarn global add @polkadot/api-cli
|
|
|
|
# add pezkuwi binary to the docker image
|
|
COPY ./artifacts/pezkuwi /usr/local/bin/
|
|
COPY ./artifacts/pezkuwi-execute-worker /usr/local/bin/
|
|
COPY ./artifacts/pezkuwi-prepare-worker /usr/local/bin/
|
|
# add pezkuwi-teyrchain binary to the docker image
|
|
COPY ./artifacts/pezkuwi-teyrchain /usr/local/bin
|
|
# copy bizinikiwi-relay to the docker image
|
|
COPY --from=relay-builder /home/user/bizinikiwi-relay /usr/local/bin/
|
|
# we need bridges zombienet runner and tests
|
|
RUN mkdir -p /home/nonroot/bridges-pezkuwi-sdk
|
|
COPY ./artifacts/bridges-pezkuwi-sdk /home/nonroot/bridges-pezkuwi-sdk
|
|
# also prepare `generate_hex_encoded_call` for running
|
|
RUN set -eux; \
|
|
cd /home/nonroot/bridges-pezkuwi-sdk/pezbridges/testing/framework/utils/generate_hex_encoded_call; \
|
|
npm install
|
|
|
|
# use the non-root user
|
|
USER node
|
|
# check if executable works in this container
|
|
RUN /usr/local/bin/pezkuwi --version
|
|
RUN /usr/local/bin/pezkuwi-teyrchain --version
|
|
RUN /usr/local/bin/bizinikiwi-relay --version
|
|
|
|
# https://polkadot.js.org/apps/?rpc=ws://127.0.0.1:{PORT}#/explorer
|
|
EXPOSE 9942 9910 8943 9945 9010 8945
|