mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
631a5db536
* Move CI scripts and update references * Update paths in .gitlab-ci.yml * Removed outdated entries from CODEOWNERS
44 lines
1.2 KiB
Docker
44 lines
1.2 KiB
Docker
FROM docker.io/library/ubuntu:20.04
|
|
|
|
# metadata
|
|
ARG VCS_REF
|
|
ARG BUILD_DATE
|
|
ARG IMAGE_NAME="staking-miner"
|
|
|
|
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="${IMAGE_NAME} for substrate based chains" \
|
|
io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/ci/dockerfiles/${IMAGE_NAME}/${IMAGE_NAME}_injected.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 \
|
|
libssl1.1 \
|
|
ca-certificates && \
|
|
# apt cleanup
|
|
apt-get autoremove -y && \
|
|
apt-get clean && \
|
|
find /var/lib/apt/lists/ -type f -not -name lock -delete; \
|
|
useradd -u 1000 -U -s /bin/sh miner
|
|
|
|
# add binary to docker image
|
|
COPY ./staking-miner /usr/local/bin
|
|
|
|
USER miner
|
|
|
|
ENV SEED=""
|
|
ENV URI="wss://rpc.polkadot.io"
|
|
ENV RUST_LOG="info"
|
|
|
|
# check if the binary works in this container
|
|
RUN /usr/local/bin/staking-miner --version
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/staking-miner" ]
|