Merge pull request #522 from xunzhou/master

Required pkg for aarch64 docker build
This commit is contained in:
Bruno Windels 2021-09-30 08:48:47 +02:00 committed by GitHub
commit 6ea835c2d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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