@k2works/claude-code-booster 0.12.0 → 0.13.0
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 +3 -0
- package/package.json +1 -1
package/lib/assets/Dockerfile
CHANGED
|
@@ -64,6 +64,9 @@ RUN npm install -g @google/gemini-cli
|
|
|
64
64
|
# Claude Codeのインストール
|
|
65
65
|
RUN npm install -g @anthropic-ai/claude-code
|
|
66
66
|
|
|
67
|
+
# Copilot CLIのインストール
|
|
68
|
+
RUN nnpm install -g @github/copilot
|
|
69
|
+
|
|
67
70
|
# すべてのインストールが完了した後、ユーザーのホームディレクトリの所有権を確保
|
|
68
71
|
RUN chown -R $USERNAME:$USERNAME /home/$USERNAME
|
|
69
72
|
|