@k2works/claude-code-booster 2.7.0 → 2.7.1
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/bin/claude-code-booster +2 -2
- package/lib/assets/Dockerfile +11 -0
- package/package.json +1 -1
package/bin/claude-code-booster
CHANGED
|
@@ -35,8 +35,8 @@ async function setupProject() {
|
|
|
35
35
|
overwrite: true,
|
|
36
36
|
errorOnExist: false,
|
|
37
37
|
filter: (from, to) => {
|
|
38
|
-
// docs
|
|
39
|
-
if (path.basename(from) === 'index.md'
|
|
38
|
+
// docs 配下の index.md をすべて除外する(他は全てコピー)
|
|
39
|
+
if (path.basename(from) === 'index.md') {
|
|
40
40
|
return false;
|
|
41
41
|
}
|
|
42
42
|
return true;
|
package/lib/assets/Dockerfile
CHANGED
|
@@ -85,6 +85,17 @@ nvm use "'$NODE_VER'"' > /tmp/nvm_install.sh \
|
|
|
85
85
|
&& su - $USERNAME -c /tmp/nvm_install.sh \
|
|
86
86
|
&& rm /tmp/nvm_install.sh
|
|
87
87
|
|
|
88
|
+
# GitHub CLIのインストール
|
|
89
|
+
RUN (type -p wget >/dev/null || (apt-get update && apt-get install -y wget)) \
|
|
90
|
+
&& mkdir -p -m 755 /etc/apt/keyrings \
|
|
91
|
+
&& out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \
|
|
92
|
+
&& cat $out | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
|
|
93
|
+
&& chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
|
|
94
|
+
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
|
95
|
+
&& apt-get update \
|
|
96
|
+
&& apt-get install -y gh \
|
|
97
|
+
&& rm -rf /var/lib/apt/lists/*
|
|
98
|
+
|
|
88
99
|
# Gemini CLIのインストール
|
|
89
100
|
RUN npm install -g @google/gemini-cli
|
|
90
101
|
|