mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-18 05:55:41 +00:00
f29b6db6e4
* Renamed staking-miner Dockerfiles * change readme stacking-miner * mv docker/ to scripts/docker/polkadot * renamed dockerfiles in scripts/docker * renamed Dockerfiles * Update scripts/docker/staking-miner/staking_miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * renamed release.Dockerfile * renamed staking-miner dockerfiles * add label polkadot_builder.Dockerfile * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot/polkadot_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/polkadot_injected_release.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/collator_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_builder.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update scripts/docker/staking-miner/staking-miner_injected.Dockerfile Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * move gpg server as variable to GHA config * simplified polkadot_builder.Dockerfile * gitlab-ci modify cp command in test-build-linux-stable * fix tests * renamed scripts/docker to scripts/dockerfiles * fix spellcheck * fix spellcheck Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
29 lines
809 B
Docker
29 lines
809 B
Docker
FROM docker.io/paritytech/ci-linux:production as builder
|
|
LABEL io.parity.image.description="This is the build stage for Polkadot. Here we create the binary."
|
|
|
|
WORKDIR /polkadot
|
|
|
|
COPY . /polkadot
|
|
|
|
RUN cargo build --release --locked
|
|
|
|
# ===== SECOND STAGE ======
|
|
|
|
FROM docker.io/library/ubuntu:20.04
|
|
LABEL io.parity.image.description="Polkadot: a platform for web3. This is a self-buit multistage image."
|
|
|
|
COPY --from=builder /polkadot/target/release/polkadot /usr/local/bin
|
|
|
|
RUN useradd -m -u 1000 -U -s /bin/sh -d /polkadot polkadot && \
|
|
mkdir -p /polkadot/.local/share && \
|
|
mkdir /data && \
|
|
chown -R polkadot:polkadot /data && \
|
|
ln -s /data /polkadot/.local/share/polkadot && \
|
|
rm -rf /usr/bin /usr/sbin
|
|
|
|
USER polkadot
|
|
EXPOSE 30333 9933 9944 9615
|
|
VOLUME ["/data"]
|
|
|
|
ENTRYPOINT ["/usr/local/bin/polkadot"]
|