From 82acc99e2db8f08c282fd714eb98adbae026cb59 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Tue, 28 Mar 2023 09:52:34 -0600 Subject: [PATCH] Update go-ethereum-foundry container for Debian base image --- .../container-build/cerc-go-ethereum-foundry/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/data/container-build/cerc-go-ethereum-foundry/Dockerfile b/app/data/container-build/cerc-go-ethereum-foundry/Dockerfile index b9a5a30b..3f73abc7 100644 --- a/app/data/container-build/cerc-go-ethereum-foundry/Dockerfile +++ b/app/data/container-build/cerc-go-ethereum-foundry/Dockerfile @@ -1,7 +1,9 @@ +# Note: cerc/foundry is Debian based FROM cerc/foundry:local -RUN apk update ; apk add --no-cache --allow-untrusted ca-certificates curl bash git jq -RUN apk add --no-cache --upgrade grep +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends jq curl netcat + WORKDIR /root ARG GENESIS_FILE_PATH=genesis.json