From 3253873bfbcb686fec20052e3c7a8c5ed917e541 Mon Sep 17 00:00:00 2001 From: moncho Date: Fri, 18 Mar 2016 21:45:57 +0100 Subject: [PATCH] Add missing trailing slash --- tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial.md b/tutorial.md index b7ad369..8724b98 100644 --- a/tutorial.md +++ b/tutorial.md @@ -426,7 +426,7 @@ Copy the files you have created earlier our image by using [COPY](https://docs.d ``` COPY app.py /usr/src/app/ -COPY templates/index.html /usr/src/app/templates +COPY templates/index.html /usr/src/app/templates/ ``` The next thing you need to specify is the port number which needs to be exposed. Since our flask app is running on `5000` that's what we'll expose.