From fb4a921cd9c73623b060c72eb04e8fa401fd13be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8B=E3=81=B2=E3=82=8F=E3=81=974=EF=BC=88=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B31=EF=BC=89?= Date: Sun, 17 Feb 2019 21:26:00 +0900 Subject: [PATCH] Docker: Add support for service worker (#4296) Service worker requires web-push package. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 719be064d2..ad04fb33dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ FROM base AS runner RUN apk add --no-cache \ ffmpeg \ tini +RUN npm i -g web-push ENTRYPOINT ["/sbin/tini", "--"] COPY --from=builder /misskey/node_modules ./node_modules