Fix path of Dockerfile directory

Other tutorial parts suppose that the Dockerfile is located at the same level as src folder.
This commit is contained in:
gr0ker 2022-12-03 16:39:35 +05:00 committed by GitHub
parent 17aa0d8f06
commit ae3acbed06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.