Skip to content

Commit

Permalink
typo: Double word "for"
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed May 30, 2019
1 parent b31b90a commit 08e8b27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -224,7 +224,7 @@ afba1a3def0a 38 seconds ago cmd /S /C mkdir test-4 42.46 MB
6801d964fda5 5 months ago 0 B
```

This next Dockerfile has now been slightly modified, with the third `RUN` instruction changed to a new file. When Docker build is run against this Dockerfile, the first three instructions, which are identical to those in the last example, use the cached image layers. However, because the changed `RUN` instruction isn't cached, a new layer is created for for the changed instruction and all subsequent instructions.
This next Dockerfile has now been slightly modified, with the third `RUN` instruction changed to a new file. When Docker build is run against this Dockerfile, the first three instructions, which are identical to those in the last example, use the cached image layers. However, because the changed `RUN` instruction isn't cached, a new layer is created for the changed instruction and all subsequent instructions.

This comment has been minimized.

Copy link
@m0dul3

m0dul3 Dec 27, 2021

1


```dockerfile
FROM windowsservercore
Expand Down
Expand Up @@ -197,7 +197,7 @@ Describe "Container network is created" {
($localNetworks | Measure-Object).Count | Should Not BeNullOrEmpty
}

# Either need NAT, L2bridge, or Transparent for for external network access.
# Either need NAT, L2bridge, or Transparent for external network access.

This comment has been minimized.

Copy link
@m0dul3

m0dul3 Dec 27, 2021

1

It "At least one NAT, Transparent, or L2Bridge Network exists" {
$totalnets = 0
if ($natNetworks -ne $null)
Expand Down

0 comments on commit 08e8b27

Please sign in to comment.