Skip to content

Commit 8ba6b07

Browse files
fix: prevent codex webui hangs (#31)
When using `uv` to sync dependencies, by default it uses a large amount of constantly refreshing progress bars. This was overwhelming the codex web interface (and possibly polluting the LLM context) https://docs.astral.sh/uv/reference/cli/#uv-run--no-progress --------- Co-authored-by: Joshua Ma <[email protected]>
1 parent dcec601 commit 8ba6b07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ RUN apt-get update && apt-get install -y pipx \
9898
&& for pyv in $(ls ${PYENV_ROOT}/versions/); do \
9999
${PYENV_ROOT}/versions/$pyv/bin/pip install --upgrade pip ruff black mypy pyright isort; \
100100
done
101-
101+
# Reduce the verbosity of uv - impacts performance of stdout buffering
102+
ENV UV_NO_PROGRESS=1
102103

103104
### NODE ###
104105

0 commit comments

Comments
 (0)