diff options
| author | Fuwn <[email protected]> | 2026-02-14 21:59:14 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-14 21:59:14 -0800 |
| commit | bc4001b32352594fdbae06a383ba7f3f9373e1f0 (patch) | |
| tree | efe5b6be6ef5472f68fd8ceaed8e42c28fab3fd1 | |
| parent | build(container): Add justfile recipe to build and push latest/date tags to G... (diff) | |
| download | locus-bc4001b32352594fdbae06a383ba7f3f9373e1f0.tar.xz locus-bc4001b32352594fdbae06a383ba7f3f9373e1f0.zip | |
build(container): Force linux/amd64 image build in publish-images recipe
| -rw-r--r-- | justfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ publish-images: date_tag="$(date -u +%Y-%m-%d)" - docker build -f Dockerfile -t locus:build . + docker build --platform linux/amd64 -f Dockerfile -t locus:build . for registry in {{ghcr_repo}} {{gitlab_repo}}; do docker tag locus:build "$registry:latest" |