claude-init 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.devcontainer/Dockerfile
CHANGED
|
@@ -58,6 +58,10 @@ RUN ARCH=$(dpkg --print-architecture) && \
|
|
|
58
58
|
# Set up non-root user
|
|
59
59
|
USER node
|
|
60
60
|
|
|
61
|
+
# Install uv for Python package management and ensure it is on PATH
|
|
62
|
+
ENV PATH=/home/node/.local/bin:$PATH
|
|
63
|
+
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
64
|
+
|
|
61
65
|
# Install global packages
|
|
62
66
|
ENV NPM_CONFIG_PREFIX=/usr/local/share/npm-global
|
|
63
67
|
ENV PATH=$PATH:/usr/local/share/npm-global/bin
|
|
@@ -91,4 +95,4 @@ USER root
|
|
|
91
95
|
RUN chmod +x /usr/local/bin/init-firewall.sh && \
|
|
92
96
|
echo "node ALL=(root) NOPASSWD: /usr/local/bin/init-firewall.sh" > /etc/sudoers.d/node-firewall && \
|
|
93
97
|
chmod 0440 /etc/sudoers.d/node-firewall
|
|
94
|
-
USER node
|
|
98
|
+
USER node
|