Skip to content

Commit

Permalink
build(Dockerfile): add ca-certificates (ethereum#445)
Browse files Browse the repository at this point in the history
build: add ca-certificates to Dockerfile
  • Loading branch information
0xmountaintop authored Aug 6, 2023
1 parent 69dd39a commit 2f0a17d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 2f0a17d

Please sign in to comment.