@k2works/claude-code-booster 2.3.1 → 2.4.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 +32 -2
- package/package.json +1 -1
package/lib/assets/Dockerfile
CHANGED
|
@@ -7,7 +7,8 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|
|
7
7
|
LANG=ja_JP.UTF-8 \
|
|
8
8
|
LC_ALL=ja_JP.UTF-8 \
|
|
9
9
|
LC_CTYPE=ja_JP.UTF-8 \
|
|
10
|
-
NODE_VER=$NODE_MAJOR
|
|
10
|
+
NODE_VER=$NODE_MAJOR \
|
|
11
|
+
PLAYWRIGHT_BROWSERS_PATH=/ms-playwright
|
|
11
12
|
|
|
12
13
|
# ユーザーの設定
|
|
13
14
|
ARG USERNAME=ubuntu
|
|
@@ -96,6 +97,35 @@ RUN npm install -g @github/copilot
|
|
|
96
97
|
# Codex CLIのインストール
|
|
97
98
|
RUN npm install -g @openai/codex
|
|
98
99
|
|
|
100
|
+
# Playwright 実行環境のインストール
|
|
101
|
+
RUN apt-get update && apt-get install -y \
|
|
102
|
+
libasound2t64 \
|
|
103
|
+
libatk-bridge2.0-0 \
|
|
104
|
+
libatk1.0-0 \
|
|
105
|
+
libcups2t64 \
|
|
106
|
+
libdbus-1-3 \
|
|
107
|
+
libdrm2 \
|
|
108
|
+
libgbm1 \
|
|
109
|
+
libglib2.0-0 \
|
|
110
|
+
libgtk-3-0 \
|
|
111
|
+
libnspr4 \
|
|
112
|
+
libnss3 \
|
|
113
|
+
libpango-1.0-0 \
|
|
114
|
+
libx11-6 \
|
|
115
|
+
libx11-xcb1 \
|
|
116
|
+
libxcb1 \
|
|
117
|
+
libxcomposite1 \
|
|
118
|
+
libxdamage1 \
|
|
119
|
+
libxext6 \
|
|
120
|
+
libxfixes3 \
|
|
121
|
+
libxkbcommon0 \
|
|
122
|
+
libxrandr2 \
|
|
123
|
+
&& rm -rf /var/lib/apt/lists/* \
|
|
124
|
+
&& mkdir -p $PLAYWRIGHT_BROWSERS_PATH \
|
|
125
|
+
&& npm install -g playwright@1.58.2 \
|
|
126
|
+
&& playwright install chromium \
|
|
127
|
+
&& chown -R $USERNAME:$USERNAME $PLAYWRIGHT_BROWSERS_PATH
|
|
128
|
+
|
|
99
129
|
# すべてのインストールが完了した後、ユーザーのホームディレクトリの所有権を確保
|
|
100
130
|
RUN chown -R $USERNAME:$USERNAME /home/$USERNAME
|
|
101
131
|
|
|
@@ -110,4 +140,4 @@ WORKDIR /srv
|
|
|
110
140
|
USER $USERNAME
|
|
111
141
|
|
|
112
142
|
# デフォルトのシェルを bash に設定
|
|
113
|
-
SHELL ["/bin/bash", "-c"]
|
|
143
|
+
SHELL ["/bin/bash", "-c"]
|