From 3fd6dd01ece85da08de97b2e62e5407044699a63 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Aug 2026 09:23:53 +0000 Subject: [PATCH] Fix stale keyboard path in Dockerfile default CMD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default CMD still targeted gmmk/pro, which stopped resolving once DEFAULT_FOLDER support for the GMMK Pro was removed from QMK (the compose service was already updated to gmmk/pro/rev1/ansi in 2dd8c05, but this fallback CMD was missed). Reviewed the repo against the current QMK breaking-changes changelog, QMK CLI docs, and pinned GitHub Actions versions: keycodes (RM_*, SC_LSPO/SC_RSPC), ENCODER_MAP usage, rules.mk feature flags, and the build.yml action versions are all already current — no other changes needed. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01X5WCd4v4ZtphKVBBcqb1L6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6434d3..c9ba91c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ RUN apt-get update && apt-get install -y \ ENV PATH="/root/.local/bin:$PATH" RUN pipx install qmk RUN qmk setup -y -CMD qmk compile -kb gmmk/pro -km default +CMD qmk compile -kb gmmk/pro/rev1/ansi -km default