From 539cf72671e6a6f7ea34b277e90ee9e9ea704f72 Mon Sep 17 00:00:00 2001 From: "Tomasz (Tom) Kramkowski" Date: Wed, 17 Dec 2025 17:05:51 +0000 Subject: [PATCH] Mention `uv python install --compile-bytecode` in docker guide --- docs/guides/integration/docker.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides/integration/docker.md b/docs/guides/integration/docker.md index f26b68e8d..96d18e914 100644 --- a/docs/guides/integration/docker.md +++ b/docs/guides/integration/docker.md @@ -342,6 +342,7 @@ to improve startup time (at the cost of increased installation time). To enable bytecode compilation, use the `--compile-bytecode` flag: ```dockerfile title="Dockerfile" +RUN uv python install --compile-bytecode RUN uv sync --compile-bytecode ```