forked from headroomlabs-ai/headroom
-
Notifications
You must be signed in to change notification settings - Fork 0
436 lines (399 loc) · 19.6 KB
/
Copy pathdocker.yml
File metadata and controls
436 lines (399 loc) · 19.6 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
name: Docker
on:
push:
branches: [main]
workflow_call:
inputs:
version:
description: "Version to stamp into the image contents and exact image tag"
required: false
type: string
enable_ref_tags:
description: "Whether to emit branch/PR ref tags"
required: false
default: true
type: boolean
workflow_dispatch:
inputs:
version:
description: "Version to stamp into the image contents and exact image tag"
required: false
release:
types: [published]
# A merge spree pushes many commits to main; without this, each commit starts
# a full multi-arch image build and they pile up against the 20-job concurrency
# cap. Supersede all but the latest build for a given ref. cancel-in-progress is
# scoped to main only so a release tag's publish (its own ref) is never killed.
concurrency:
group: docker-${{ github.ref }}
cancel-in-progress: ${{ github.ref == 'refs/heads/main' }}
env:
REGISTRY: ghcr.io
permissions:
contents: read
packages: write
id-token: write # For cosign keyless signing via Sigstore OIDC
jobs:
# ─── Per-arch fan-out ──────────────────────────────────────────────────────
# Build each variant on its native architecture in parallel:
# linux/amd64 → ubuntu-24.04 (native x86_64)
# linux/arm64 → ubuntu-24.04-arm (native aarch64, GA Jan 2025)
#
# Pre-#377 we ran a single matrix job per variant on `ubuntu-latest` and
# let bake's `platforms = ["linux/amd64", "linux/arm64"]` do multi-arch
# via QEMU emulation — ~1h per variant. Native arm64 runners drop QEMU
# entirely and cut each variant to ~10 min on each arch in parallel.
#
# Each per-arch build pushes by digest only (no tags). The
# `docker-manifest` job below combines the per-arch digests into the
# final multi-arch tagged manifest, which is what users pull by tag.
docker-build:
runs-on: ${{ matrix.arch.runs_on }}
timeout-minutes: 75
strategy:
fail-fast: false
matrix:
variant:
- { name: "", bake_target: runtime }
- { name: nonroot, bake_target: runtime-nonroot }
- { name: code, bake_target: runtime-code }
- { name: code-nonroot, bake_target: runtime-code-nonroot }
- { name: slim, bake_target: runtime-slim }
- { name: slim-nonroot, bake_target: runtime-slim-nonroot }
- { name: code-slim, bake_target: runtime-code-slim }
- { name: code-slim-nonroot, bake_target: runtime-code-slim-nonroot }
arch:
- { name: amd64, runs_on: ubuntu-24.04, platform: linux/amd64 }
- { name: arm64, runs_on: ubuntu-24.04-arm, platform: linux/arm64 }
steps:
- uses: actions/checkout@v7
- name: Normalize image name
id: image-name
run: |
image_name="$(printf '%s' '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')"
printf 'image_name=%s\n' "$image_name" >> "$GITHUB_OUTPUT"
- name: Determine image version
id: version
env:
MANUAL_VERSION: ${{ inputs.version || github.event.inputs.version }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
run: |
version="${MANUAL_VERSION#v}"
if [ -z "$version" ] && [ -n "$RELEASE_TAG" ]; then
version="${RELEASE_TAG#v}"
fi
printf 'version=%s\n' "$version" >> "$GITHUB_OUTPUT"
- name: Set up Python
if: steps.version.outputs.version != ''
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Sync versioned files for image build
if: steps.version.outputs.version != ''
run: |
python scripts/version-sync.py --version ${{ steps.version.outputs.version }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Log in to GHCR
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Labels (not tags) for the per-arch image. Tags belong on the
# multi-arch index manifest and are applied in docker-manifest.
- name: Extract image labels
id: meta
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
- name: Build and push by digest (single platform)
id: bake
uses: docker/bake-action@v7
with:
files: |
./docker-bake.hcl
cwd://${{ steps.meta.outputs.bake-file-labels }}
targets: ${{ matrix.variant.bake_target }}
push: true
# `*.platform` overrides the [amd64,arm64] default in
# docker-bake.hcl. `push-by-digest=true,name-canonical=true`
# tells buildx to push the per-platform manifest with no tags
# — only the digest is recorded — so multiple per-arch builds
# can coexist in the registry until the manifest job stitches
# them. `name=<registry>/<image>` is REQUIRED here: with no
# `bake-file-tags` in scope (tags belong on the manifest, not
# per-arch), bake has no way to know the push target without
# the explicit `name=`. Removing it surfaces as the
# misleading "ERROR: tag is needed when pushing to registry"
# — see PR #378 (regression from #376). GHA cache is scoped
# per (variant, arch) so the two arches don't fight over the
# same cache key.
set: |
*.platform=${{ matrix.arch.platform }}
*.output=type=image,name=${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }},push-by-digest=true,name-canonical=true,push=true
*.cache-from=type=gha,scope=${{ matrix.variant.name || 'root' }}-${{ matrix.arch.name }}
*.cache-to=type=gha,mode=max,scope=${{ matrix.variant.name || 'root' }}-${{ matrix.arch.name }}
- name: Export digest
id: digest
env:
BAKE_METADATA: ${{ steps.bake.outputs.metadata }}
run: |
# Bake's metadata is one entry per target; for a single-target
# single-platform build it has exactly one digest. Pipe the
# JSON through a file (same ARG_MAX rationale as before) and
# extract that digest.
cat > "${RUNNER_TEMP}/bake_meta.json" <<'__HEADROOM_BAKE_META_EOF__'
${{ steps.bake.outputs.metadata }}
__HEADROOM_BAKE_META_EOF__
digest="$(jq -r 'to_entries[0].value."containerimage.digest" // empty' \
"${RUNNER_TEMP}/bake_meta.json")"
if [ -z "$digest" ]; then
echo "ERROR: no digest in bake metadata" >&2
cat "${RUNNER_TEMP}/bake_meta.json" >&2
exit 1
fi
printf 'digest=%s\n' "$digest" >> "$GITHUB_OUTPUT"
# Stage a marker file named after the bare hex digest. The
# manifest job downloads all per-arch markers for a variant
# and reconstructs `IMAGE@sha256:<digest>` references from
# the filenames.
mkdir -p "${RUNNER_TEMP}/digests"
touch "${RUNNER_TEMP}/digests/${digest#sha256:}"
# Smoke-test the built image before recording its digest. If the
# Python ABI is wrong (e.g. builder Python 3.11 vs distroless
# Python 3.13) pydantic_core._pydantic_core fails to dlopen and
# the import raises ModuleNotFoundError. Catching it here prevents
# a broken digest from reaching the manifest merge job and being
# tagged and published. Both python-slim and distroless variants
# expose python3 in PATH and honour the image's PYTHONPATH env.
- name: Smoke-test image (pydantic_core + headroom._core)
env:
IMAGE: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
DIGEST: ${{ steps.digest.outputs.digest }}
PLATFORM: ${{ matrix.arch.platform }}
run: |
docker run --rm \
--platform "$PLATFORM" \
--entrypoint python3 \
"${IMAGE}@${DIGEST}" \
-c "
import pydantic_core
from headroom._core import DiffCompressor, SmartCrusher
print('smoke-test OK: pydantic_core', pydantic_core.__version__,
'| DiffCompressor', DiffCompressor.__name__,
'| SmartCrusher', SmartCrusher.__name__)
"
- name: Upload digest marker
uses: actions/upload-artifact@v7
with:
# Variant + arch in the artifact name so the manifest job can
# download with `pattern: digests-<variant>-*` to gather all
# arches for one variant. `root` substitutes the empty-string
# variant since GHA artifact names can't end in a hyphen.
name: digests-${{ matrix.variant.name || 'root' }}-${{ matrix.arch.name }}
path: ${{ runner.temp }}/digests/*
if-no-files-found: error
retention-days: 1
# ─── Per-variant manifest merge ────────────────────────────────────────────
# One job per variant, after both arch builds for that variant complete.
# `docker buildx imagetools create` stitches the two per-arch digests
# into a single multi-arch index manifest, applies the metadata-action
# tags, and that manifest is what users pull by `:tag`.
docker-manifest:
needs: docker-build
runs-on: ubuntu-24.04
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
variant:
- { name: "", bake_target: runtime }
- { name: nonroot, bake_target: runtime-nonroot }
- { name: code, bake_target: runtime-code }
- { name: code-nonroot, bake_target: runtime-code-nonroot }
- { name: slim, bake_target: runtime-slim }
- { name: slim-nonroot, bake_target: runtime-slim-nonroot }
- { name: code-slim, bake_target: runtime-code-slim }
- { name: code-slim-nonroot, bake_target: runtime-code-slim-nonroot }
steps:
# No `actions/checkout` here: the manifest job only calls
# `docker buildx imagetools` against the registry and runs
# cosign — neither needs the repo on disk. Skipping checkout
# saves a few seconds across 8 parallel manifest jobs.
- name: Normalize image name
id: image-name
run: |
image_name="$(printf '%s' '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')"
printf 'image_name=%s\n' "$image_name" >> "$GITHUB_OUTPUT"
- name: Determine image version
id: version
env:
MANUAL_VERSION: ${{ inputs.version || github.event.inputs.version }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
run: |
version="${MANUAL_VERSION#v}"
if [ -z "$version" ] && [ -n "$RELEASE_TAG" ]; then
version="${RELEASE_TAG#v}"
fi
printf 'version=%s\n' "$version" >> "$GITHUB_OUTPUT"
- name: Compute short SHA
id: short-sha
run: printf 'sha=%s\n' "${GITHUB_SHA:0:7}" >> "$GITHUB_OUTPUT"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Log in to GHCR
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Download per-arch digests for this variant
uses: actions/download-artifact@v8
with:
pattern: digests-${{ matrix.variant.name || 'root' }}-*
path: ${{ runner.temp }}/digests
merge-multiple: true
# Same tag rules as the pre-fan-out workflow — preserve every
# tag flavor (semver, ref, sha-prefixed, version-suffixed,
# bare variant) so existing pull URLs keep working.
- name: Extract metadata (variant)
id: meta
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
tags: |
type=ref,event=branch,enable=${{ inputs.enable_ref_tags != 'false' && github.event_name != 'release' }},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=ref,event=pr,enable=${{ inputs.enable_ref_tags != 'false' && github.event_name != 'release' }},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=raw,value=dev,enable=${{ inputs.enable_ref_tags != 'false' && github.event_name == 'push' }},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=raw,value=${{ steps.version.outputs.version }},enable=${{ steps.version.outputs.version != '' }},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=raw,value=${{ steps.version.outputs.version }}-${{ steps.short-sha.outputs.sha }},enable=${{ steps.version.outputs.version != '' && matrix.variant.name == '' }}
type=raw,value=${{ steps.version.outputs.version }}-${{ matrix.variant.name }}-${{ steps.short-sha.outputs.sha }},enable=${{ steps.version.outputs.version != '' && matrix.variant.name != '' }}
type=semver,pattern={{version}},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=semver,pattern={{major}}.{{minor}},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=semver,pattern={{major}},suffix=${{ matrix.variant.name != '' && format('-{0}', matrix.variant.name) || '' }}
type=sha,format=short,prefix=${{ matrix.variant.name != '' && format('{0}-', matrix.variant.name) || 'sha-' }}
type=raw,value=${{ matrix.variant.name }},enable=${{ matrix.variant.name != '' }}
- name: Create multi-arch manifest
id: manifest
env:
IMAGE: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
DIGEST_DIR: ${{ runner.temp }}/digests
run: |
# Reconstruct full image references from the digest marker
# filenames (each file is named after the bare hex digest
# of one per-arch manifest).
if ! ls "${DIGEST_DIR}"/* >/dev/null 2>&1; then
echo "ERROR: no digests downloaded for variant '${{ matrix.variant.name || 'root' }}'" >&2
exit 1
fi
digest_refs=()
for f in "${DIGEST_DIR}"/*; do
digest="$(basename "$f")"
digest_refs+=("${IMAGE}@sha256:${digest}")
done
# Build `--tag` args from the metadata-action JSON output.
# Empty tags array is valid (PR builds without ref-tags
# enabled emit nothing); skip manifest creation in that case.
tag_args=()
while IFS= read -r tag; do
[ -n "$tag" ] && tag_args+=("--tag" "$tag")
done < <(jq -r '.tags[]?' <<< '${{ steps.meta.outputs.json }}')
if [ "${#tag_args[@]}" -eq 0 ]; then
echo "No tags to apply for variant '${{ matrix.variant.name || 'root' }}'; skipping manifest."
exit 0
fi
docker buildx imagetools create \
"${tag_args[@]}" \
"${digest_refs[@]}"
# Resolve the index manifest digest of the freshly pushed
# multi-arch manifest so cosign can sign it directly. We
# ask the registry via `imagetools inspect` and read the
# `.manifest.digest` field — that's the registry's own
# record of the index digest (no client-side hashing).
first_tag="$(jq -r '.tags[0]' <<< '${{ steps.meta.outputs.json }}')"
index_digest="$(docker buildx imagetools inspect "${first_tag}" \
--format '{{ json . }}' | jq -r '.manifest.digest')"
if [ -z "$index_digest" ] || [ "$index_digest" = "null" ]; then
echo "ERROR: could not resolve index digest for ${first_tag}" >&2
exit 1
fi
printf 'index_digest=%s\n' "$index_digest" >> "$GITHUB_OUTPUT"
printf 'first_tag=%s\n' "$first_tag" >> "$GITHUB_OUTPUT"
- name: Install cosign
if: steps.manifest.outputs.index_digest != ''
uses: sigstore/cosign-installer@v3
- name: Sign multi-arch index manifest with cosign
if: steps.manifest.outputs.index_digest != ''
env:
# Same routing as before: keep signature artifacts in a
# sibling GHCR package so the main image's version listing
# stays clean. Verifiers must export the same
# COSIGN_REPOSITORY when running 'cosign verify'. See the
# pre-#377 workflow for the GHCR/OCI-1.1 referrers context.
COSIGN_REPOSITORY: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}-signatures
IMAGE: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
INDEX_DIGEST: ${{ steps.manifest.outputs.index_digest }}
run: |
target="${IMAGE}@${INDEX_DIGEST}"
echo "Signing ${target} (signatures -> ${COSIGN_REPOSITORY})"
for attempt in 1 2 3; do
if cosign sign --yes "${target}"; then
exit 0
fi
if [ "$attempt" -eq 3 ]; then
echo "ERROR: cosign signing failed after ${attempt} attempts" >&2
exit 1
fi
sleep_for=$((attempt * 10))
echo "cosign signing failed on attempt ${attempt}; retrying in ${sleep_for}s" >&2
sleep "$sleep_for"
done
promote-latest:
# Re-push the :latest tag pointing at the root variant *after* every
# variant manifest job has finished, so GHCR's package version
# listing (sorted by created_at) shows the root image with :latest
# at the top instead of whichever variant happened to finish last.
needs: docker-manifest
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Normalize image name
id: image-name
run: |
image_name="$(printf '%s' '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')"
printf 'image_name=%s\n' "$image_name" >> "$GITHUB_OUTPUT"
- name: Determine image version
id: version
env:
MANUAL_VERSION: ${{ inputs.version || github.event.inputs.version }}
RELEASE_TAG: ${{ github.event.release.tag_name }}
run: |
version="${MANUAL_VERSION#v}"
if [ -z "$version" ] && [ -n "$RELEASE_TAG" ]; then
version="${RELEASE_TAG#v}"
fi
printf 'version=%s\n' "$version" >> "$GITHUB_OUTPUT"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Log in to GHCR
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Re-tag root image as :latest
if: steps.version.outputs.version != ''
env:
IMAGE: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image_name }}
VERSION: ${{ steps.version.outputs.version }}
run: |
# Add a unique annotation so the resulting image index manifest gets
# a new digest, which makes GHCR record a fresh package version with
# current timestamp (otherwise the existing root manifest is reused
# and stays where it was in the version listing).
promoted_at="$(date -u +%Y-%m-%dT%H:%M:%SZ)"
docker buildx imagetools create \
--annotation "index:io.headroom.promoted-at=${promoted_at}" \
--tag "${IMAGE}:latest" \
"${IMAGE}:${VERSION}"