From 4b501a1393946fbae85f0a23a1c5876ce284cd34 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 19 Aug 2024 17:52:39 -0500 Subject: [PATCH] Address feedback for Docker integration guide (#6235) --- docs/guides/integration/docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/integration/docker.md b/docs/guides/integration/docker.md index 90f46e7a2..6fe4c4db2 100644 --- a/docs/guides/integration/docker.md +++ b/docs/guides/integration/docker.md @@ -74,13 +74,13 @@ ENV PATH="/app/.venv/bin:$PATH" Or, you can use `uv run` to run commands in the environment: -```dockerfile -RUN uv run /app/some_script.py +```dockerfile title="Dockerfile" +RUN uv run some_script.py ``` And, to start your application by default: -```dockerfile +```dockerfile title="Dockerfile" # Presuming there is a `my_app` command provided by the project CMD ["uv", "run", "my_app"] ```