From 2f0a17d36de50f3d30c11f253b15f04f9e038152 Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Sun, 6 Aug 2023 21:42:22 +0800 Subject: [PATCH] build(Dockerfile): add `ca-certificates` (#445) build: add ca-certificates to Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 55d89c9d98..c5fa6f76ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,9 @@ RUN cd /go-ethereum && env GO111MODULE=on go run build/ci.go install -buildtags # Pull Geth into a second stage deploy alpine container FROM ubuntu:20.04 +RUN apt-get -qq update \ + && apt-get -qq install -y --no-install-recommends ca-certificates + COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ COPY --from=zkp-builder /app/target/release/libzkp.so /usr/local/lib/ COPY --from=zkp-builder /app/target/release/libzktrie.so /usr/local/lib/