We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ce3bb commit a0d7224Copy full SHA for a0d7224
1 file changed
.devcontainer/base/.devcontainer/Dockerfile
@@ -54,8 +54,10 @@ RUN groupadd --gid $USER_GID $USERNAME \
54
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
55
&& chmod 0440 /etc/sudoers.d/$USERNAME
56
57
-# Install Claude Code
+# Install Claude Code (as user to install in correct home)
58
+USER $USERNAME
59
RUN curl -fsSL https://claude.ai/install.sh | bash
60
+USER root
61
62
# Prepare Claude Code directories
63
RUN mkdir -p /home/$USERNAME/.claude && \
0 commit comments