From b5c351f08ff81366707645034fb19f0d8ec76b5f Mon Sep 17 00:00:00 2001 From: Sergio Alexander Florez Galeano Date: Mon, 13 Jul 2026 03:26:24 +0000 Subject: [PATCH] chore(docker): bump devcontainer CLI pin to >= 3.5.1 Reflects the latest released version with unified Bearer-first auth priority and bidirectional 401 retry. Co-authored-by: Cursor --- docker/local/cli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/local/cli/Dockerfile b/docker/local/cli/Dockerfile index 0e4afee..c6ba7d3 100644 --- a/docker/local/cli/Dockerfile +++ b/docker/local/cli/Dockerfile @@ -46,7 +46,7 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | d # dev-user). `-f` makes an HTTP error a non-zero curl exit instead of piping an error # page into bash; the `SHELL … pipefail` above makes a failing curl abort the build. # install.sh itself runs `set -euo pipefail`, so failures inside it abort too. -RUN curl -fsSL https://cli.dailybot.com/install.sh | DAILYBOT_VERSION='>=3.3.0' bash +RUN curl -fsSL https://cli.dailybot.com/install.sh | DAILYBOT_VERSION='>=3.5.1' bash # Install all Python dev/runtime deps from the repo's lock file. # This single COPY/RUN pair is the only build cache layer pip touches — it