dockerfiles: upgrade to ubuntu:20.04; some chore (#3828)

* dockerfiles: upgrade to ubuntu:20.04; some chore

* dockerfiles: fq container names
This commit is contained in:
Denis Pisarev
2021-09-13 14:34:29 +02:00
committed by GitHub
parent 33d7f9dd7b
commit 3800575db4
12 changed files with 41 additions and 39 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
# #
# See the `deployments/README.md` for all the available `PROJECT` values. # See the `deployments/README.md` for all the available `PROJECT` values.
FROM paritytech/bridges-ci:latest as builder FROM docker.io/paritytech/bridges-ci:latest as builder
WORKDIR /parity-bridges-common WORKDIR /parity-bridges-common
COPY . . COPY . .
@@ -19,7 +19,7 @@ RUN cargo build --release --verbose -p ${PROJECT} && \
# In this final stage we copy over the final binary and do some checks # In this final stage we copy over the final binary and do some checks
# to make sure that everything looks good. # to make sure that everything looks good.
FROM ubuntu:20.04 as runtime FROM docker.io/library/ubuntu:20.04 as runtime
# show backtraces # show backtraces
ENV RUST_BACKTRACE 1 ENV RUST_BACKTRACE 1
+1 -1
View File
@@ -1,7 +1,7 @@
# This file is a "runtime" part from a builder-pattern in Dockerfile, it's used in CI. # This file is a "runtime" part from a builder-pattern in Dockerfile, it's used in CI.
# The only different part is that the compilation happens externally, # The only different part is that the compilation happens externally,
# so COPY has a different source. # so COPY has a different source.
FROM ubuntu:20.04 FROM docker.io/library/ubuntu:20.04
# show backtraces # show backtraces
ENV RUST_BACKTRACE 1 ENV RUST_BACKTRACE 1
@@ -2,7 +2,7 @@
# #
# This image is meant to be used as a building block when building images for # This image is meant to be used as a building block when building images for
# the various components in the bridge repo, such as nodes and relayers. # the various components in the bridge repo, such as nodes and relayers.
FROM ubuntu:20.04 FROM docker.io/library/ubuntu:20.04
ENV LAST_DEPS_UPDATE 2021-04-01 ENV LAST_DEPS_UPDATE 2021-04-01
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
@@ -1,4 +1,4 @@
FROM node:12 as build-deps FROM docker.io/library/node:12 as build-deps
# install tools and dependencies # install tools and dependencies
RUN set -eux; \ RUN set -eux; \
@@ -19,7 +19,7 @@ ENV EXPECTED_ETHEREUM_NETWORK_ID $EXPECTED_ETHEREUM_NETWORK_ID
RUN yarn build:docker RUN yarn build:docker
# Stage 2 - the production environment # Stage 2 - the production environment
FROM nginx:1.12 FROM docker.io/library/nginx:1.12
COPY --from=build-deps /usr/src/bridge-ui/nginx/*.conf /etc/nginx/conf.d/ COPY --from=build-deps /usr/src/bridge-ui/nginx/*.conf /etc/nginx/conf.d/
COPY --from=build-deps /usr/src/bridge-ui/dist /usr/share/nginx/html COPY --from=build-deps /usr/src/bridge-ui/dist /usr/share/nginx/html
EXPOSE 80 EXPOSE 80
@@ -1,4 +1,4 @@
FROM ruby:alpine FROM docker.io/library/ruby:alpine
RUN apk add --no-cache git RUN apk add --no-cache git
@@ -1,4 +1,4 @@
FROM ubuntu:xenial AS builder FROM docker.io/library/ubuntu:xenial AS builder
# show backtraces # show backtraces
ENV RUST_BACKTRACE 1 ENV RUST_BACKTRACE 1
@@ -60,7 +60,7 @@ WORKDIR /openethereum
RUN cargo build --release --verbose RUN cargo build --release --verbose
RUN strip ./target/release/openethereum RUN strip ./target/release/openethereum
FROM ubuntu:xenial FROM docker.io/library/ubuntu:xenial
# show backtraces # show backtraces
ENV RUST_BACKTRACE 1 ENV RUST_BACKTRACE 1
+2 -2
View File
@@ -1,4 +1,4 @@
FROM paritytech/ci-linux:production as builder FROM docker.io/paritytech/ci-linux:production as builder
LABEL description="This is the build stage for Polkadot. Here we create the binary." LABEL description="This is the build stage for Polkadot. Here we create the binary."
ARG PROFILE=release ARG PROFILE=release
@@ -10,7 +10,7 @@ RUN cargo build --$PROFILE
# ===== SECOND STAGE ====== # ===== SECOND STAGE ======
FROM debian:buster-slim FROM docker.io/library/ubuntu:20.04
LABEL description="This is the 2nd stage: a very small image where we copy the Polkadot binary." LABEL description="This is the 2nd stage: a very small image where we copy the Polkadot binary."
ARG PROFILE=release ARG PROFILE=release
COPY --from=builder /polkadot/target/$PROFILE/polkadot /usr/local/bin COPY --from=builder /polkadot/target/$PROFILE/polkadot /usr/local/bin
+2 -2
View File
@@ -1,4 +1,4 @@
FROM debian:buster-slim FROM docker.io/library/ubuntu:20.04
# metadata # metadata
ARG VCS_REF ARG VCS_REF
@@ -8,7 +8,7 @@ ARG IMAGE_NAME
LABEL io.parity.image.authors="devops-team@parity.io" \ LABEL io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \ io.parity.image.vendor="Parity Technologies" \
io.parity.image.title="${IMAGE_NAME}" \ io.parity.image.title="${IMAGE_NAME}" \
io.parity.image.description="polkadot: a platform for web3" \ io.parity.image.description="Polkadot: a platform for web3" \
io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/Dockerfile" \ io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/Dockerfile" \
io.parity.image.revision="${VCS_REF}" \ io.parity.image.revision="${VCS_REF}" \
io.parity.image.created="${BUILD_DATE}" \ io.parity.image.created="${BUILD_DATE}" \
+4 -3
View File
@@ -1,4 +1,5 @@
FROM debian:buster-slim # this file copies from scripts/docker/Dockerfile and changes only the binary name
FROM docker.io/library/ubuntu:20.04
# metadata # metadata
ARG VCS_REF ARG VCS_REF
@@ -8,8 +9,8 @@ ARG IMAGE_NAME
LABEL io.parity.image.authors="devops-team@parity.io" \ LABEL io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \ io.parity.image.vendor="Parity Technologies" \
io.parity.image.title="${IMAGE_NAME}" \ io.parity.image.title="${IMAGE_NAME}" \
io.parity.image.description="polkadot: a platform for web3" \ io.parity.image.description="adder-collator image" \
io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/Dockerfile" \ io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/collator.Dockerfile" \
io.parity.image.revision="${VCS_REF}" \ io.parity.image.revision="${VCS_REF}" \
io.parity.image.created="${BUILD_DATE}" \ io.parity.image.created="${BUILD_DATE}" \
io.parity.image.documentation="https://github.com/paritytech/polkadot/" io.parity.image.documentation="https://github.com/paritytech/polkadot/"
+20 -20
View File
@@ -1,4 +1,4 @@
FROM debian:buster-slim FROM docker.io/library/ubuntu:20.04
# metadata # metadata
ARG VCS_REF ARG VCS_REF
@@ -8,7 +8,7 @@ ARG POLKADOT_VERSION
LABEL io.parity.image.authors="devops-team@parity.io" \ LABEL io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \ io.parity.image.vendor="Parity Technologies" \
io.parity.image.title="parity/polkadot" \ io.parity.image.title="parity/polkadot" \
io.parity.image.description="polkadot: a platform for web3" \ io.parity.image.description="Polkadot: a platform for web3" \
io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/Dockerfile" \ io.parity.image.source="https://github.com/paritytech/polkadot/blob/${VCS_REF}/scripts/docker/Dockerfile" \
io.parity.image.revision="${VCS_REF}" \ io.parity.image.revision="${VCS_REF}" \
io.parity.image.created="${BUILD_DATE}" \ io.parity.image.created="${BUILD_DATE}" \
@@ -19,24 +19,25 @@ ENV RUST_BACKTRACE 1
# install tools and dependencies # install tools and dependencies
RUN apt-get update && \ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
libssl1.1 \ libssl1.1 \
ca-certificates \ ca-certificates \
curl \ curl \
gnupg && \ gnupg && \
useradd -m -u 1000 -U -s /bin/sh -d /polkadot polkadot && \ useradd -m -u 1000 -U -s /bin/sh -d /polkadot polkadot && \
gpg --recv-keys --keyserver hkps://keys.mailvelope.com 9D4B2B6EB8F97156D19669A9FF0812D491B96798 && \ # add repo's gpg keys and install the published polkadot binary
gpg --export 9D4B2B6EB8F97156D19669A9FF0812D491B96798 > /usr/share/keyrings/parity.gpg && \ gpg --recv-keys --keyserver hkps://keys.mailvelope.com 9D4B2B6EB8F97156D19669A9FF0812D491B96798 && \
echo 'deb [signed-by=/usr/share/keyrings/parity.gpg] https://releases.parity.io/deb release main' > /etc/apt/sources.list.d/parity.list && \ gpg --export 9D4B2B6EB8F97156D19669A9FF0812D491B96798 > /usr/share/keyrings/parity.gpg && \
apt-get update && \ 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 install -y --no-install-recommends polkadot=${POLKADOT_VERSION#?} && \ apt-get update && \
apt-get install -y --no-install-recommends polkadot=${POLKADOT_VERSION#?} && \
# apt cleanup # apt cleanup
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* ; \ rm -rf /var/lib/apt/lists/* ; \
mkdir -p /data /polkadot/.local/share && \ mkdir -p /data /polkadot/.local/share && \
chown -R polkadot:polkadot /data && \ chown -R polkadot:polkadot /data && \
ln -s /data /polkadot/.local/share/polkadot ln -s /data /polkadot/.local/share/polkadot
USER polkadot USER polkadot
@@ -47,4 +48,3 @@ EXPOSE 30333 9933 9944
VOLUME ["/polkadot"] VOLUME ["/polkadot"]
ENTRYPOINT ["/usr/bin/polkadot"] ENTRYPOINT ["/usr/bin/polkadot"]
@@ -14,7 +14,7 @@ RUN cargo build --locked --$PROFILE --package staking-miner
# ===== SECOND STAGE ====== # ===== SECOND STAGE ======
FROM debian:buster-slim FROM docker.io/library/ubuntu:20.04
LABEL description="This is the 2nd stage: a very small image where we copy the binary." LABEL description="This is the 2nd stage: a very small image where we copy the binary."
LABEL io.parity.image.authors="devops-team@parity.io" \ LABEL io.parity.image.authors="devops-team@parity.io" \
io.parity.image.vendor="Parity Technologies" \ io.parity.image.vendor="Parity Technologies" \
@@ -43,4 +43,4 @@ ENV RUST_LOG="info"
# check if the binary works in this container # check if the binary works in this container
RUN /usr/local/bin/staking-miner --version RUN /usr/local/bin/staking-miner --version
ENTRYPOINT [ "/usr/local/bin/staking-miner"] ENTRYPOINT [ "/usr/local/bin/staking-miner" ]
@@ -1,4 +1,4 @@
FROM debian:buster-slim FROM docker.io/library/ubuntu:20.04
# metadata # metadata
ARG VCS_REF ARG VCS_REF
@@ -22,6 +22,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \ DEBIAN_FRONTEND=noninteractive apt-get install -y \
libssl1.1 \ libssl1.1 \
ca-certificates && \ ca-certificates && \
# apt cleanup
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get clean && \ apt-get clean && \
find /var/lib/apt/lists/ -type f -not -name lock -delete; \ find /var/lib/apt/lists/ -type f -not -name lock -delete; \