From 05a7323c5ef9bd11ee2bb81ce3c5a9a38651459c Mon Sep 17 00:00:00 2001 From: keito4 Date: Sun, 4 Jan 2026 11:05:40 +0900 Subject: [PATCH] fix: update DevContainer base image to 1.43.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update DevContainer base image from non-existent 1.41.0 to latest 1.43.0. The 1.41.0 tag does not exist in GHCR, causing DevContainer startup failures. Available versions checked: 1.40.0, 1.40.1, 1.42.0, 1.43.0 This fixes the error: ``` Error response from daemon: No such image: ghcr.io/keito4/config-base:1.41.0 ``` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8f09174e..a0c6453e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "Config Base Container", - "image": "ghcr.io/keito4/config-base:1.41.0", + "image": "ghcr.io/keito4/config-base:1.43.0", "features": { "ghcr.io/devcontainers-extra/features/homebrew-package:1": {}, "ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {},