From fa5ea45726ef55c9cb7802ea8c03310ed04a444f Mon Sep 17 00:00:00 2001 From: "Acid Chicken (硫酸鶏)" Date: Wed, 13 Feb 2019 23:45:58 +0900 Subject: 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(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 4d7d450f8f..719be064d2 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 -- cgit v1.2.3-freya