From c0b4d87f12f96273a52be0343f2b2d5c25eb89f0 Mon Sep 17 00:00:00 2001 From: Olivier FAURAX Date: Wed, 7 Apr 2021 16:44:02 +0200 Subject: [PATCH] Broken Dockerfile for docker-101 Not sure if my fix is optimal, but at least it works --- docs_en/tutorial/our-application/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_en/tutorial/our-application/index.md b/docs_en/tutorial/our-application/index.md index 1de5d1d..78c4b34 100644 --- a/docs_en/tutorial/our-application/index.md +++ b/docs_en/tutorial/our-application/index.md @@ -53,7 +53,7 @@ see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. ```dockerfile FROM node:10-alpine WORKDIR /app - COPY . . + COPY app . RUN yarn install --production CMD ["node", "/app/src/index.js"] ```