Fix typo in build cache

This commit is contained in:
Jonathan McCall 2023-01-19 13:38:21 -05:00 committed by GitHub
parent f0b1d35d29
commit 4dac84ef1d
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