Skip to content

Commit 8f7f9bd

Browse files
committed
Update katacoda generated scenarios
Signed-off-by: Javier Romero <[email protected]>
1 parent 76ea8e9 commit 8f7f9bd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ tools-tidy:
165165
cd tools; go mod tidy
166166

167167
.PHONY: prepare-for-pr
168-
prepare-for-pr: check-links test tools-tidy
168+
prepare-for-pr: check-links test tools-tidy katacoda
169169
@echo "========"
170170
@echo "It looks good! :)"
171171
@echo "Make sure to commit all changes!"

katacoda/files.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ content/docs/app-developer-guide/using-cache-image.md,katacoda/scenarios/app-dev
44
content/docs/app-developer-guide/environment-variables.md,katacoda/scenarios/app-developer-guide/environment-variables.md
55
content/docs/app-developer-guide/mounting-volumes.md,katacoda/scenarios/app-developer-guide/mounting-volumes.md
66
content/docs/app-developer-guide/run-an-app.md,katacoda/scenarios/app-developer-guide/run-an-app.md
7-
content/docs/app-developer-guide/specify-buildpacks.md,katacoda/scenarios/app-developer-guide/specify-buildpacks.md#
7+
content/docs/app-developer-guide/specify-buildpacks.md,katacoda/scenarios/app-developer-guide/specify-buildpacks.md
88
content/docs/buildpack-author-guide/create-buildpack/_index.md,katacoda/scenarios/buildpack-author-guide/intro.md
99
content/docs/buildpack-author-guide/create-buildpack/adding-bill-of-materials.md,katacoda/scenarios/buildpack-author-guide/adding-bill-of-materials.md
1010
content/docs/buildpack-author-guide/create-buildpack/build-app.md,katacoda/scenarios/buildpack-author-guide/build-app.md

katacoda/scenarios/app-developer-guide/specify-buildpacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
# Specify buildpacks
22
# Specify buildpacks
33

44

katacoda/scenarios/buildpack-author-guide/adding-bill-of-materials.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Buildpacks:
2727
examples/ruby 0.0.1 -
2828

2929
Processes:
30-
TYPE SHELL COMMAND ARGS
31-
web (default) bash bundle exec ruby app.rb
32-
worker bash bundle exec ruby worker.rb
30+
TYPE SHELL COMMAND ARGS WORK DIR
31+
web (default) bash bundle exec ruby app.rb /workspace
32+
worker bash bundle exec ruby worker.rb /workspace
3333
```
3434

3535
Apart from the above standard metadata, buildpacks can also populate information about the dependencies they have provided in form of a `Bill-of-Materials`. Let's see how we can use this to populate information about the version of `ruby` that was installed in the output app image.

0 commit comments

Comments
 (0)