mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 06:57:58 +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>
52 lines
1.8 KiB
Docker
52 lines
1.8 KiB
Docker
FROM docker.io/library/ubuntu:20.04
|
|
|
|
# metadata
|
|
ARG VCS_REF
|
|
ARG BUILD_DATE
|
|
ARG POLKADOT_VERSION
|
|
ARG POLKADOT_GPGKEY=9D4B2B6EB8F97156D19669A9FF0812D491B96798
|
|
ARG GPG_KEYSERVER="hkps://keys.mailvelope.com"
|
|
|
|
LABEL io.parity.image.authors="devops-team@parity.io" \
|
|
io.parity.image.vendor="Parity Technologies" \
|
|
io.parity.image.title="parity/polkadot" \
|
|
io.parity.image.description="Polkadot: a platform for web3. This is the official Parity image with an injected binary." \
|
|
io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/polkadot_injected_release.Dockerfile" \
|
|
io.parity.image.revision="${VCS_REF}" \
|
|
io.parity.image.created="${BUILD_DATE}" \
|
|
io.parity.image.documentation="https://github.com/paritytech/polkadot/"
|
|
|
|
# show backtraces
|
|
ENV RUST_BACKTRACE 1
|
|
|
|
# install tools and dependencies
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
libssl1.1 \
|
|
ca-certificates \
|
|
gnupg && \
|
|
useradd -m -u 1000 -U -s /bin/sh -d /polkadot polkadot && \
|
|
# add repo's gpg keys and install the published polkadot binary
|
|
gpg --recv-keys --keyserver ${GPG_KEYSERVER} ${POLKADOT_GPGKEY} && \
|
|
gpg --export ${POLKADOT_GPGKEY} > /usr/share/keyrings/parity.gpg && \
|
|
echo 'deb [signed-by=/usr/share/keyrings/parity.gpg] https://releases.parity.io/deb release main' > /etc/apt/sources.list.d/parity.list && \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends polkadot=${POLKADOT_VERSION#?} && \
|
|
# apt cleanup
|
|
apt-get autoremove -y && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* ; \
|
|
mkdir -p /data /polkadot/.local/share && \
|
|
chown -R polkadot:polkadot /data && \
|
|
ln -s /data /polkadot/.local/share/polkadot
|
|
|
|
USER polkadot
|
|
|
|
# check if executable works in this container
|
|
RUN /usr/bin/polkadot --version
|
|
|
|
EXPOSE 30333 9933 9944
|
|
VOLUME ["/polkadot"]
|
|
|
|
ENTRYPOINT ["/usr/bin/polkadot"]
|