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/create-buildpack/adding-bill-of-materials.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,9 @@ Buildpacks:
31
31
examples/ruby 0.0.1 -
32
32
33
33
Processes:
34
-
TYPE SHELL COMMAND ARGS
35
-
web (default) bash bundle exec ruby app.rb
36
-
worker bash bundle exec ruby worker.rb
34
+
TYPE SHELL COMMAND ARGS WORK DIR
35
+
web (default) bash bundle exec ruby app.rb /workspace
36
+
worker bash bundle exec ruby worker.rb /workspace
37
37
```
38
38
39
39
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