From 1d79efa7faa04c91d75f0e210b5108a6e8091636 Mon Sep 17 00:00:00 2001 From: Michael Irwin Date: Tue, 22 Nov 2022 22:13:47 -0500 Subject: [PATCH] Update Dockerfile to no longer require python, make, etc. Signed-off-by: Michael Irwin --- docs/tutorial/our-application/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/our-application/index.md b/docs/tutorial/our-application/index.md index 3038a31..ad41120 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -39,7 +39,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. ```dockerfile FROM node:18-alpine # Adding build tools to make yarn install work on Apple silicon / arm64 machines - RUN apk add --no-cache python2 g++ make + RUN apk add --no-cache python3 WORKDIR /app COPY . . RUN yarn install --production