From c4192563a74d8be185e6ac0789fbefa467cb1d7b Mon Sep 17 00:00:00 2001 From: Paul Hermans Date: Mon, 12 Jul 2021 16:37:13 +0200 Subject: [PATCH] FROM node:12-alpine does not work Change to FROM node:alpine works --- 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 a6a3fe4..ed61711 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -37,7 +37,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. 1. Create a file named `Dockerfile` in the same folder as the file `package.json` with the following contents. ```dockerfile - FROM node:12-alpine + FROM node:alpine RUN apk add --no-cache python g++ make WORKDIR /app COPY . .