Update writing-a-dockerfile.md

This commit is contained in:
Vedant Naik 2024-08-07 16:42:34 +01:00 committed by GitHub
parent 271baf43e9
commit b317122b15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ Now that you have the project, youre ready to create the `Dockerfile`.
4. Now, define the working directory by using the `WORKDIR` instruction. This will specify where future commands will run and the directory files will be copied inside the container image.
```dockerfile
WORKDIR /usr/local/app
WORKDIR /app
```
5. Copy all of the files from your project on your machine into the container image by using the `COPY` instruction: