Skip to content

Commit

Permalink
Fix: [Dockerfile] Docker イメージのビルド中に vue-cli-service build がフリーズする問題を回避
Browse files Browse the repository at this point in the history
原因不明だが、Node.js を 18.17.1 で固定したらビルドできるようになった
  • Loading branch information
tsukumijima committed Sep 21, 2023
1 parent 9356ef8 commit fac45e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN unzip thirdparty-linux.tar.xz.zip && tar xvf thirdparty-linux.tar.xz
# クライアントのビルド成果物 (dist) は Git に含まれているが、万が一ビルドし忘れたりや開発ブランチでの利便性を考慮してビルドしておく
# --------------------------------------------------------------------------------------------------------------

FROM node:18 AS client-builder
FROM node:18.17.1 AS client-builder

# 依存パッケージリスト (package.json/yarn.lock) だけをコピー
WORKDIR /code/client/
Expand Down

0 comments on commit fac45e7

Please sign in to comment.