From 947e26669f4bdf4b28540ebe7a932e422d28ad6e Mon Sep 17 00:00:00 2001 From: Romany Ghoubrial Date: Mon, 21 Jun 2021 13:39:17 +0200 Subject: [PATCH] Remove unnecessary installs from app Dockerfile --- 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