We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d8061 commit 49514c3Copy full SHA for 49514c3
.devcontainer/ai-container/Dockerfile
@@ -93,12 +93,12 @@ RUN npm install -g @anthropic-ai/claude-code @google/gemini-cli @charmland/crush
93
USER root
94
95
# Install Simon Willison's LLM CLI in an isolated venv for consistency
96
-USER root
97
RUN apt-get update \
98
&& apt-get install -y --no-install-recommends python3 python3-venv python3-pip \
99
&& rm -rf /var/lib/apt/lists/*
100
101
-RUN python3 -m venv /opt/llm-env
+RUN python3 -m venv /opt/llm-env \
+ && chown -R vscode:vscode /opt/llm-env
102
ENV PATH="/opt/llm-env/bin:${PATH}"
103
104
USER vscode
0 commit comments