From 17f24942da800d8280e87d19e7adc88c1a7cb7e9 Mon Sep 17 00:00:00 2001 From: xunzhou Date: Wed, 29 Sep 2021 19:31:39 -0700 Subject: [PATCH] Required pkg for aarch64 docker build --- Dockerfile | 2 +- Dockerfile-dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6acd7d10..f9e32313 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM docker.io/node:alpine as builder -RUN apk add --no-cache git +RUN apk add --no-cache git python3 build-base COPY . /app WORKDIR /app RUN yarn install \ diff --git a/Dockerfile-dev b/Dockerfile-dev index 31877ee1..08dd9abd 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,5 +1,5 @@ FROM docker.io/node:alpine -RUN apk add --no-cache git +RUN apk add --no-cache git python3 build-base COPY . /code WORKDIR /code RUN yarn install