Skip to content

Commit b60df04

Browse files
massongitclaude
andcommitted
fix: docker runに--platform linux/amd64を追加してmanifest unknownエラーを修正
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9f8fd3a commit b60df04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/deploy_hato_bot/update_uv_version/get_uv_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -e
33

4-
uv_version=$(docker run --rm ghcr.io/dependabot/dependabot-updater-uv uv --version | sed -e 's/^uv //g')
4+
uv_version=$(docker run --rm --platform linux/amd64 ghcr.io/dependabot/dependabot-updater-uv uv --version | sed -e 's/^uv //g')
55
sed -i -e "s/required-version = .*/required-version = \"$uv_version\"/g" pyproject.toml
66
image_name=ghcr.io/astral-sh/uv
77
image_tag=$image_name:$uv_version-python3.14-bookworm-slim

0 commit comments

Comments
 (0)