@k2works/claude-code-booster 0.16.1 → 0.16.2
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/lib/assets/Dockerfile
CHANGED
|
@@ -91,6 +91,10 @@ RUN npm install -g @openai/codex
|
|
|
91
91
|
# すべてのインストールが完了した後、ユーザーのホームディレクトリの所有権を確保
|
|
92
92
|
RUN chown -R $USERNAME:$USERNAME /home/$USERNAME
|
|
93
93
|
|
|
94
|
+
# Git safe.directory 設定(マウントされたボリューム対応)
|
|
95
|
+
RUN git config --global --add safe.directory /srv \
|
|
96
|
+
&& git config --global --add safe.directory '*'
|
|
97
|
+
|
|
94
98
|
# 作業ディレクトリの設定
|
|
95
99
|
WORKDIR /srv
|
|
96
100
|
|
|
@@ -5,16 +5,16 @@ in
|
|
|
5
5
|
packages.mkShell {
|
|
6
6
|
inherit (baseShell) pure;
|
|
7
7
|
buildInputs = baseShell.buildInputs ++ (with packages; [
|
|
8
|
-
|
|
8
|
+
nodejs_20
|
|
9
9
|
nodePackages.npm
|
|
10
|
-
nodePackages.
|
|
11
|
-
|
|
12
|
-
nodePackages."@anthropic-ai/claude-code"
|
|
13
|
-
# Note: gemini-cli and copilot CLI might not be in standard nixpkgs under these names
|
|
14
|
-
# or might need specific versions. Using what's typically available.
|
|
10
|
+
nodePackages.typescript
|
|
11
|
+
nodePackages.typescript-language-server
|
|
15
12
|
]);
|
|
16
13
|
shellHook = ''
|
|
17
14
|
${baseShell.shellHook}
|
|
18
|
-
echo "
|
|
15
|
+
echo "TypeScript development environment activated"
|
|
16
|
+
echo " - Node.js: $(node --version)"
|
|
17
|
+
echo " - npm: $(npm --version)"
|
|
18
|
+
echo " - TypeScript: $(tsc --version)"
|
|
19
19
|
'';
|
|
20
20
|
}
|
|
@@ -12,6 +12,10 @@ packages.mkShell {
|
|
|
12
12
|
# ホスト環境から完全に分離する
|
|
13
13
|
pure = true;
|
|
14
14
|
shellHook = ''
|
|
15
|
+
# Git safe.directory 設定(コンテナ環境対応)
|
|
16
|
+
git config --global --add safe.directory /srv 2>/dev/null || true
|
|
17
|
+
git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
|
|
18
|
+
|
|
15
19
|
echo "Welcome to the common development environment"
|
|
16
20
|
'';
|
|
17
21
|
}
|