回答編集履歴
1
alpineはNode.jsだけやん、PHPはDebianだったのでそれ用に修正
test
CHANGED
@@ -160,7 +160,13 @@
|
|
160
160
|
|
161
161
|
AlpineLinuxにNode.jsを導入する正規の手法でインストールしましょう。
|
162
162
|
|
163
|
+
参考記事:
|
164
|
+
|
165
|
+
|
166
|
+
|
163
|
-
|
167
|
+
- [Ubuntu/Debianに最新のNode.jsをインストールする一番良い方法](https://linuxfan.info/install_nodejs_on_ubuntu_debian)
|
168
|
+
|
169
|
+
- [DockerHubのApache付きPHPイメージ](https://github.com/docker-library/php/blob/64811791f0682262478d73514819908fcfe73d7f/8.0/buster/apache/Dockerfile)
|
164
170
|
|
165
171
|
|
166
172
|
|
@@ -226,7 +232,9 @@
|
|
226
232
|
|
227
233
|
# 特定バージョンのNode.jsをインストールしたければ追加で考える必要はある
|
228
234
|
|
235
|
+
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -
|
236
|
+
|
229
|
-
RUN ap
|
237
|
+
RUN apt install -y nodejs && \
|
230
238
|
|
231
239
|
npm install && \
|
232
240
|
|