Required pkg for aarch64 docker build

This commit is contained in:
xunzhou 2021-09-29 19:31:39 -07:00
parent 004aa5d3dc
commit 17f24942da
2 changed files with 2 additions and 2 deletions

View File

@ -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 \

View File

@ -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