From 71af7141d3d76fb7e055dd8807ad1e2ae4f7abde Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 12 Apr 2021 14:19:24 -0400 Subject: [PATCH] add python2 from node-gyp --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6eb5c32..29d3bcc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN \ curl \ g++ \ make \ - python3 && \ + python2 && \ echo "**** install runtime packages ****" && \ apk add --no-cache \ nodejs \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3cdbc1e..09c5a74 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -18,7 +18,7 @@ RUN \ curl \ g++ \ make \ - python3 && \ + python2 && \ echo "**** install runtime packages ****" && \ apk add --no-cache \ nodejs \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f938518..ea522ba 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -18,7 +18,7 @@ RUN \ curl \ g++ \ make \ - python3 && \ + python2 && \ echo "**** install runtime packages ****" && \ apk add --no-cache \ nodejs \