Skip to content

Commit 7a7cb2e

Browse files
committed
Hack around hugo issue
Hugo is not copying some .svg files into the public folder. Copy the .svg files to the static images folder to work around this temporarily. Signed-off-by: Aidan Delaney <[email protected]>
1 parent 1292e07 commit 7a7cb2e

File tree

8 files changed

+8
-3
lines changed

8 files changed

+8
-3
lines changed

content/docs/for-app-developers/concepts/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight=3
99

1010
## Building explained
1111

12-
![build diagram](/docs/for-app-developers/concepts/build.svg)
12+
![build diagram](/images/build.svg)
1313

1414
Each [buildpack] inspects the source code and provides relevant dependencies.
1515
An image is then generated from the app's source code and these dependencies.

content/docs/for-app-developers/concepts/builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The [build-time base image] provides the base environment for the `builder`
1313
(e.g., an Ubuntu Jammy OS image with build tooling) and
1414
a [runtime base image] provides the base environment for the `app image` during runtime.
1515

16-
![builder](/docs/for-app-developers/concepts/builder.svg)
16+
![builder](/images/builder.svg)
1717

1818
Under the hood a builder uses the [lifecycle] to run the `detect` phase for all the `buildpacks` it contains, in order,
1919
and then proceeds to run the `build` phase for all the `buildpacks` that passed detection.

content/docs/for-app-developers/concepts/rebase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ weight=4
1616

1717
By using image layer rebasing, this command avoids the need to fully rebuild the app.
1818

19-
![rebase diagram](/docs/for-app-developers/concepts/rebase.svg)
19+
![rebase diagram](/images/rebase.svg)
2020

2121
At its core, image rebasing is a simple process. By inspecting an app image, `rebase` can determine whether or not a
2222
newer version of the app's base image exists (either locally or in a registry).

themes/buildpacks/static/images/build.svg

Lines changed: 1 addition & 0 deletions
Loading

themes/buildpacks/static/images/builder.svg

Lines changed: 1 addition & 0 deletions
Loading

themes/buildpacks/static/images/how.svg

Lines changed: 1 addition & 0 deletions
Loading

themes/buildpacks/static/images/rebase.svg

Lines changed: 1 addition & 0 deletions
Loading

themes/buildpacks/static/images/what.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)