From 5fffecaea16e457bb16a0c8cf600b4c19a5cd4eb Mon Sep 17 00:00:00 2001 From: David Boreham Date: Sat, 22 Oct 2022 18:28:31 -0600 Subject: [PATCH] Add missing python-dev package, previously present in an older revision of the golang-alpine base image --- container-build/cerc-fixturenet-eth-geth/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-build/cerc-fixturenet-eth-geth/Dockerfile b/container-build/cerc-fixturenet-eth-geth/Dockerfile index d3cf2f95..068291a2 100644 --- a/container-build/cerc-fixturenet-eth-geth/Dockerfile +++ b/container-build/cerc-fixturenet-eth-geth/Dockerfile @@ -1,7 +1,7 @@ FROM skylenet/ethereum-genesis-generator AS ethgen FROM cerc/go-ethereum:local -RUN apk add --no-cache python3 py3-pip curl wget jq build-base gettext libintl openssl bash +RUN apk add --no-cache python3 python3-dev py3-pip curl wget jq build-base gettext libintl openssl bash COPY --from=ethgen /usr/local/bin/eth2-testnet-genesis /usr/local/bin/eth2-testnet-genesis COPY --from=ethgen /usr/local/bin/eth2-val-tools /usr/local/bin/eth2-val-tools