From acdcd83ced646b844d289811313c5f49ad592634 Mon Sep 17 00:00:00 2001 From: Spencer Adolph <46459660+spenceradolph@users.noreply.github.com> Date: Thu, 21 Oct 2021 12:57:36 -0500 Subject: [PATCH] Removed 'RUN apk add --no-cache python g++ make' This line did not appear to be necessary for the tutorial. Testing with it removed appeared to have no effect. Additionally, this line does not appear later in the tutorial when referring back to this step (see /docs/tutorial/image-building-best-practices/index.md). --- docs/tutorial/our-application/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/tutorial/our-application/index.md b/docs/tutorial/our-application/index.md index a6a3fe4..fceca1f 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -38,7 +38,6 @@ 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