From 5fae88027f30bc98c78b983ab4b4e5f4d7b4fca5 Mon Sep 17 00:00:00 2001 From: Muhamed Fazal PS Date: Tue, 28 Jul 2026 23:10:42 +0530 Subject: [PATCH] Fix: provision poppler-utils for PDF support in devcontainers/scripts The Read tool silently fails on PDFs without poppler-utils, which is currently undocumented and missing from default container setups. This PR adds poppler-utils to the .devcontainer provisioning to ensure PDF rendering works out-of-the-box in containerized environments. Closes #23704 --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8b48f6ad72..1037516d81 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -6,7 +6,7 @@ ENV TZ="$TZ" ARG CLAUDE_CODE_VERSION=latest # Install basic development tools and iptables/ipset -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && apt-get install poppler-utils -y --no-install-recommends \ less \ git \ procps \