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: toc/rfc/rfc-draft-cnb-lifecycle.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,3 +132,46 @@ This RFC enables only the use of custom buildpacks. CNBs could be added as syste
132
132
#### Better SBoM Support
133
133
134
134
This RFC already introduces some SBoM capabilities offered by CNBs. Yet, it is not complete (runtime OS information is missing) and buried in the layers of the droplet. This could be further improved in future.
135
+
136
+
### Open Questions
137
+
138
+
#### Pulling Buildpacks from private registries
139
+
140
+
Options:
141
+
142
+
- Require environment variable with docker config content.
143
+
144
+
```json
145
+
{
146
+
"auths": {
147
+
"https://index.docker.io/v1/": {
148
+
"auth": "dXNlcjpwYXNzd29yZA=="
149
+
},
150
+
"quay.io": {
151
+
"auth": "dXNlcjpwYXNzd29yZA=="
152
+
}
153
+
}
154
+
}
155
+
```
156
+
157
+
- Require environment variable pointing to docker config file. CF CLI must parse the file and invoke helpers if needed for required registries.
0 commit comments