From cc1758fa25a25021a0c67151acf0583c064d5bc5 Mon Sep 17 00:00:00 2001 From: Jochem Brouwer Date: Mon, 23 Jan 2023 11:36:00 +0100 Subject: [PATCH] clients: fix ethereumjs docker build --- clients/ethereumjs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/ethereumjs/Dockerfile b/clients/ethereumjs/Dockerfile index 0ecaa5e58d..3c00c29c76 100644 --- a/clients/ethereumjs/Dockerfile +++ b/clients/ethereumjs/Dockerfile @@ -1,5 +1,5 @@ FROM node:16-alpine as build -RUN apk update && apk add --no-cache bash git jq curl && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache bash git jq curl python3 gcc make g++ && rm -rf /var/cache/apk/* RUN git clone --depth 1 https://github.com/ethereumjs/ethereumjs-monorepo.git && \ (cd ethereumjs-monorepo && npm i)