From 53c994b1ac28e45d6525b575147b574214dfbc54 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 16 Nov 2020 14:09:21 +0100 Subject: [PATCH] ethereum: a wild node-gyp python dependency appeared MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ¯\_(ツ)_/¯ --- ethereum/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/Dockerfile b/ethereum/Dockerfile index 9265d3d68..c72f7af69 100644 --- a/ethereum/Dockerfile +++ b/ethereum/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine # npm wants to clone random Git repositories - lovely. -RUN apk add git +RUN apk add git python # Run as user, otherwise, npx explodes. USER 1000