From 3063486aff23d891b1d4735f49dc7841410b0466 Mon Sep 17 00:00:00 2001 From: Yaron Sheffer Date: Sun, 17 May 2020 15:22:32 +0300 Subject: [PATCH] Update index.md It is unclear where to put the Dockerfile. If you put it next to the `app` dir, the build will still succeed but the image will fail to start. --- 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 4b39153..3e2699b 100644 --- a/docs/tutorial/our-application/index.md +++ b/docs/tutorial/our-application/index.md @@ -35,7 +35,7 @@ Dockerfile is simply a text-based script of instructions that is used to create a container image. If you've created Dockerfiles before, you might see a few flaws in the Dockerfile below. But, don't worry! We'll go over them. -1. Create a file named Dockerfile with the following contents. +1. Create a file named Dockerfile with the following contents. Place this file under the `app` directory. ```dockerfile FROM node:12-alpine