From ae3acbed06ebd656191b6e6e104f99811fdf37c3 Mon Sep 17 00:00:00 2001 From: gr0ker Date: Sat, 3 Dec 2022 16:39:35 +0500 Subject: [PATCH] Fix path of Dockerfile directory Other tutorial parts suppose that the Dockerfile is located at the same level as src folder. --- language/dotnet/build-images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/dotnet/build-images.md b/language/dotnet/build-images.md index ced7cd4c55..e4a28c970c 100644 --- a/language/dotnet/build-images.md +++ b/language/dotnet/build-images.md @@ -101,7 +101,7 @@ Press Ctrl+C in the terminal window to stop the application. ## Create a Dockerfile -In the `dotnet-docker\src` directory, create a file named `Dockerfile`. +In the `dotnet-docker` directory, create a file named `Dockerfile`. Next, we need to add a line in our Dockerfile that tells Docker what image we would like to use to build our application. Open the `Dockerfile` in an IDE or a text editor, and add the following instructions.