From fa5ea45726ef55c9cb7802ea8c03310ed04a444f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Wed, 13 Feb 2019 23:45:58 +0900 Subject: [PATCH] Docker: Remove unnecessary workaround for BusyBox's "free" (#4199) (#4213) systeminformation gets incorrect memory information due to BusyBox's "free" issue.(#3409) A workaround for avoiding it was made. But it never works because the runner container has no effect. It should be deleted. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d7d450f8..719be064d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ WORKDIR /misskey FROM base AS builder -RUN unlink /usr/bin/free RUN apk add --no-cache \ autoconf \ automake \ @@ -20,7 +19,6 @@ RUN apk add --no-cache \ make \ nasm \ pkgconfig \ - procps \ python \ zlib-dev RUN npm i -g yarn