File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 3
3
### General
4
4
- Feat: 通報を受けた際、または解決した際に、予め登録した宛先に通知を飛ばせるように(mail or webhook) #13705
5
5
- Fix: 配信停止したインスタンス一覧が見れなくなる問題を修正
6
+ - Fix: Dockerコンテナの立ち上げ時に` pnpm ` のインストールで固まることがある問題
6
7
7
8
### Client
8
9
- Fix: ` /about#federation ` ページなどで各インスタンスのチャートが表示されなくなっていた問題を修正
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ RUN apt-get update \
82
82
USER misskey
83
83
WORKDIR /misskey
84
84
85
+ # add package.json to add pnpm
86
+ COPY --chown=misskey:misskey ./package.json ./package.json
87
+ RUN corepack install
88
+
85
89
COPY --chown=misskey:misskey --from=target-builder /misskey/node_modules ./node_modules
86
90
COPY --chown=misskey:misskey --from=target-builder /misskey/packages/backend/node_modules ./packages/backend/node_modules
87
91
COPY --chown=misskey:misskey --from=target-builder /misskey/packages/misskey-js/node_modules ./packages/misskey-js/node_modules
You can’t perform that action at this time.
0 commit comments