-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md.template
53 lines (40 loc) · 1.39 KB
/
README.md.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# minimages
Minimal multi-arch container images for various tools based on Wolfi.
## Images
{{- $spec := datasource "images" -}}
{{- $tags := datasource "tags" }}
{{ $names := $spec.images | coll.Keys | coll.Sort -}}
<table>
<tr>
<th>Image</th>
<th>Tags</th>
</tr>
{{- range $name:= $names }}
<tr>
{{ $image := index $spec.images $name -}}
{{ $imageTags := index $tags $name }}
<td>
<a href="//{{$spec.repository}}/{{$name}}"><code>{{$spec.repository}}/{{$name}}</code></a>
</td>
<td>
{{- range $tag := $imageTags }}
<code>{{$tag}}</code>
{{- end }}
</td>
</tr>
{{ end }}
</table>
## Image Configuration
All images run as `nonroot` user with UID/GID 65532. The directory `/src` is provided as the working directory and is owned by the same user.
## Tags
### `-dev` tags
These images contain `busybox` to provide a minimal shell and `apk-tools` to install additional packages.
### Semver tags
The images get tagged with the components of semver version of the upstream package they are based on.
## Verifying Signatures
The images are signed using [cosign](https://github.com/sigstore/cosign). The signature of an image can be verified using the following command:
```bash
cosign verify ghcr.io/minimages/curl \
--certificate-identity 'https://github.com/minimages/catalog/.github/workflows/build.yml@refs/heads/main' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com'
```