You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/buildpack-author-guide/build-phases-overview.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ Now that we understand the example application we can step through each of the B
78
78
79
79
## Phases
80
80
81
-
There are five phases to a buildpacks build. These logic for each phaze is provided by a binary within [`lifecycle`](https://github.com/buildpacks/lifecycle) and the orchestration of running each of the binaries is the responsibility of the Buildpacks platform. In this case we are using `pack` as our Buildpacks platform.
81
+
There are five phases to a buildpacks build. These logic for each phase is provided by a binary within [`lifecycle`](https://github.com/buildpacks/lifecycle) and the orchestration of running each of the binaries is the responsibility of the Buildpacks platform. In this case we are using `pack` as our Buildpacks platform.
82
82
83
83
At a high-level each layer:
84
84
@@ -92,7 +92,7 @@ We consider each of the buildpacks phases in the context of our invocation of `p
92
92
93
93
### Phase 1: Analyze
94
94
95
-
The analyze phase checks a registry for previous images called `example`. It resolves the image metadata making it available to the subsequent restore phaze. In addition, analyze verifies that we have write access to the registry to create or update the image called `example`.
95
+
The analyze phase checks a registry for previous images called `example`. It resolves the image metadata making it available to the subsequent restore phase. In addition, analyze verifies that we have write access to the registry to create or update the image called `example`.
96
96
97
97
In our case `pack` tells us that there is no previous `example` image. It provides the output.
0 commit comments