From 70e1d514a236e5230a9a296e9818c330a240426d Mon Sep 17 00:00:00 2001 From: "yongku.lee" Date: Tue, 9 Sep 2025 15:22:23 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20update=20Dockerfiles=20?= =?UTF-8?q?for=20geth=20and=20node=20to=20install=20ca-certificates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- geth/Dockerfile | 2 ++ node/Dockerfile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/geth/Dockerfile b/geth/Dockerfile index d3d8aab..6aedfe8 100644 --- a/geth/Dockerfile +++ b/geth/Dockerfile @@ -12,6 +12,8 @@ RUN make geth # ------------------------------------------------------------------------- FROM ubuntu:jammy +RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* + WORKDIR /app COPY --from=builder /op-geth/build/bin/geth /usr/local/bin/ diff --git a/node/Dockerfile b/node/Dockerfile index 7612f4a..6f8be0c 100644 --- a/node/Dockerfile +++ b/node/Dockerfile @@ -21,6 +21,8 @@ RUN make op-node # ------------------------------------------------------------------------- FROM ubuntu:jammy +RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* + WORKDIR /app COPY --from=builder /optimism/op-node/bin/op-node /usr/local/bin/