From 93bd69ac0360938327f6510dc7c60f7089218ce2 Mon Sep 17 00:00:00 2001 From: Miroslav Tomasik Date: Mon, 6 Dec 2021 15:08:18 +0100 Subject: [PATCH] Update 02_our_app.md --- get-started/02_our_app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/02_our_app.md b/get-started/02_our_app.md index 4733d98205..817e5ec0cc 100644 --- a/get-started/02_our_app.md +++ b/get-started/02_our_app.md @@ -45,7 +45,7 @@ see a few flaws in the Dockerfile below. But, don't worry. We'll go over them. ```dockerfile # syntax=docker/dockerfile:1 FROM node:12-alpine - RUN apk add --no-cache python3 g++ make + RUN apk add --no-cache python2 g++ make WORKDIR /app COPY . . RUN yarn install --production