Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WG 2018-09-11] Relax specification for buildpack and stack IDs #7

Merged
merged 4 commits into from
Oct 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions buildpack.md
Original file line number Diff line number Diff line change
Expand Up @@ -594,10 +594,17 @@ run-images = ["<run image tag>"]
```

Buildpack authors MUST choose a globally unique ID, for example: "io.buildpacks.ruby".
The buildpack ID MUST contain at least one period (`.`).

The buildpack ID:
- MUST only contain numbers, letters, and the charactors `.`, `/`, and `-`.
- MUST NOT be `config` or `app`.
- MUST NOT be identical to any other buildpack ID when using a case-insensitive comparison.

Stack authors MUST choose a globally unique ID, for example: "io.buildpacks.mystack".
The stack ID MUST contain at least one period (`.`).

The stack ID:
- MUST only contain numbers, letters, and the charactors `.`, `/`, and `-`.
- MUST NOT be identical to any other buildpack ID when using a case-insensitive comparison.

The stack `build-images` and `run-images` are suggested sources of the image for platforms that are unaware of the stack ID.

Expand Down