@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.
package/lib/assets/Dockerfile
CHANGED
|
@@ -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
|
|
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/
|
|
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 \
|
package/lib/assets/README.md
CHANGED