From eccb882c593e151325cb3e602267e47158bc1a03 Mon Sep 17 00:00:00 2001 From: Stefan Scherer Date: Sat, 6 Mar 2021 18:17:50 +0100 Subject: [PATCH] Add build tools to fix arm64 build issue Signed-off-by: Stefan Scherer --- docs/tutorial/our-application/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorial/our-application/index.md b/docs/tutorial/our-application/index.md index fceca1f..a6a3fe4 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -38,6 +38,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. ```dockerfile FROM node:12-alpine + RUN apk add --no-cache python g++ make WORKDIR /app COPY . . RUN yarn install --production