@k2works/claude-code-booster 0.14.0 → 0.15.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.
@@ -2,11 +2,12 @@
2
2
  FROM ubuntu:22.04 AS base
3
3
 
4
4
  # 環境変数の設定
5
+ ARG NODE_MAJOR=22
5
6
  ENV DEBIAN_FRONTEND=noninteractive \
6
7
  LANG=ja_JP.UTF-8 \
7
8
  LC_ALL=ja_JP.UTF-8 \
8
9
  LC_CTYPE=ja_JP.UTF-8 \
9
- NODE_VER=22
10
+ NODE_VER=$NODE_MAJOR
10
11
 
11
12
  # ユーザーの設定
12
13
  ARG USERNAME=developer
@@ -61,7 +62,7 @@ ENV PATH="/home/$USERNAME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:${P
61
62
  USER root
62
63
 
63
64
  # Node.jsのインストール
64
- RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
65
+ RUN curl -fsSL https://deb.nodesource.com/setup_$NODE_VER.x | bash - \
65
66
  && apt-get install -y nodejs \
66
67
  && npm install -g yarn \
67
68
  && mkdir -p /home/$USERNAME/.nvm \
@@ -8,7 +8,7 @@
8
8
 
9
9
  | ソフトウェア | バージョン | 備考 |
10
10
  | :----------- | :--------- | :--- |
11
- | nodejs | 12.12.0 | |
11
+ | nodejs | 22.x | |
12
12
 
13
13
  ## 構成
14
14
 
@@ -3,6 +3,8 @@ services:
3
3
  build:
4
4
  context: .
5
5
  dockerfile: Dockerfile
6
+ args:
7
+ NODE_MAJOR: 22
6
8
  volumes:
7
9
  - .:/srv
8
10
  tty: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k2works/claude-code-booster",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "AI Agent Development Support Tool",
5
5
  "main": "main.js",
6
6
  "bin": {