diff --git a/.node-version b/.node-version
index 9a0c3d3f455aa0f1120d6caa5625d8711404a004..ab155ce138b843fb47d5ee901a7364f36de20646 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-v14.15.4
+v14.15.5
diff --git a/Dockerfile b/Dockerfile
index eba3a833bc0af2a52ea8d78c655fffed6d7b0bac..c1745fc21548ce8ec5b6717142ecaaa980639ffb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM node:14.15.4-alpine AS base
+FROM node:14.15.5-alpine3.13 AS base
 
 ENV NODE_ENV=production
 
@@ -10,7 +10,6 @@ RUN apk add --no-cache \
     autoconf \
     automake \
     file \
-		git \
     g++ \
     gcc \
     libc-dev \
@@ -18,8 +17,10 @@ RUN apk add --no-cache \
     make \
     nasm \
     pkgconfig \
-    python \
-    zlib-dev
+    python3 \
+    zlib-dev \
+    vips-dev \
+    vips
 
 COPY package.json yarn.lock ./
 RUN yarn install
@@ -30,8 +31,9 @@ FROM base AS runner
 
 RUN apk add --no-cache \
     ffmpeg \
-    tini
-RUN npm i -g web-push
+    tini \
+    vips
+
 ENTRYPOINT ["/sbin/tini", "--"]
 
 COPY --from=builder /misskey/node_modules ./node_modules