devs-common 2.0.0__tar.gz → 2.0.2__tar.gz
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.
- {devs_common-2.0.0 → devs_common-2.0.2}/PKG-INFO +1 -1
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/Dockerfile +4 -4
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common.egg-info/PKG-INFO +1 -1
- {devs_common-2.0.0 → devs_common-2.0.2}/pyproject.toml +1 -1
- {devs_common-2.0.0 → devs_common-2.0.2}/LICENSE +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/README.md +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/__init__.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/config.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/core/__init__.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/core/container.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/core/project.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/core/workspace.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/devs_config.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/exceptions.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/devcontainer.json +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/copy-ssh.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/post-create-wrapper.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/python-venv-integration.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/screenshot-webapp.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/setup-workspace.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/start-tunnel.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/tunnel-status.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/webapp-screenshot.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/init-firewall.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/setup-devs-env.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/setup-vscode-cache.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/start-services.sh +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/vscode-settings-reference.md +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/__init__.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/config_hash.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/console.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/devcontainer.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/devcontainer_template.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/docker_client.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/file_utils.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common/utils/git_utils.py +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common.egg-info/SOURCES.txt +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common.egg-info/dependency_links.txt +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common.egg-info/requires.txt +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/devs_common.egg-info/top_level.txt +0 -0
- {devs_common-2.0.0 → devs_common-2.0.2}/setup.cfg +0 -0
|
@@ -122,20 +122,20 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
|
|
|
122
122
|
# Install Claude CLI and OpenAI Codex CLI
|
|
123
123
|
RUN npm install -g @anthropic-ai/claude-code @openai/codex
|
|
124
124
|
|
|
125
|
-
# Install VS Code CLI for tunnel support
|
|
125
|
+
# Install VS Code CLI for tunnel support (needs root for /usr/local/bin)
|
|
126
126
|
# Using the standalone CLI which supports the 'tunnel' command
|
|
127
|
+
USER root
|
|
127
128
|
RUN ARCH=$(dpkg --print-architecture) && \
|
|
128
129
|
if [ "$ARCH" = "amd64" ]; then \
|
|
129
|
-
curl -
|
|
130
|
+
curl -fSL 'https://update.code.visualstudio.com/latest/cli-linux-x64/stable' -o /tmp/vscode-cli.tar.gz; \
|
|
130
131
|
elif [ "$ARCH" = "arm64" ]; then \
|
|
131
|
-
curl -
|
|
132
|
+
curl -fSL 'https://update.code.visualstudio.com/latest/cli-linux-arm64/stable' -o /tmp/vscode-cli.tar.gz; \
|
|
132
133
|
fi && \
|
|
133
134
|
tar -xf /tmp/vscode-cli.tar.gz -C /usr/local/bin && \
|
|
134
135
|
rm /tmp/vscode-cli.tar.gz && \
|
|
135
136
|
chmod +x /usr/local/bin/code
|
|
136
137
|
|
|
137
138
|
# Set up environment variables and aliases for Claude and Codex
|
|
138
|
-
USER root
|
|
139
139
|
RUN for shell_rc in /home/node/.zshrc /home/node/.bashrc; do \
|
|
140
140
|
echo "export CLAUDE_CONFIG_DIR=\"/home/node/claudeconfig\"" >> "$shell_rc" && \
|
|
141
141
|
echo "export CODEX_CONFIG_HOME=\"/home/node/codexconfig\"" >> "$shell_rc" && \
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/post-create-wrapper.sh
RENAMED
|
File without changes
|
{devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/scripts/python-venv-integration.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/setup-devs-env.sh
RENAMED
|
File without changes
|
{devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/setup-vscode-cache.sh
RENAMED
|
File without changes
|
{devs_common-2.0.0 → devs_common-2.0.2}/devs_common/templates/sudo-scripts/start-services.sh
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|