Merge pull request #16559 from Jonnymcc/fix-build-cache-typo

Fix typo in build cache
This commit is contained in:
Sebastiaan van Stijn 2023-01-20 11:17:58 +01:00 committed by GitHub
commit 520a0ff7a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ RUN echo "the second command"
```
It's possible to run both of these commands inside a single `RUN`, which means
that they will share the same cache! This can is achievable using the `&&` shell
that they will share the same cache! This is achievable using the `&&` shell
operator to run one command after another:
```dockerfile