diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2019-02-13 23:45:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-13 23:45:58 +0900 |
| commit | fa5ea45726ef55c9cb7802ea8c03310ed04a444f (patch) | |
| tree | 25835cf9e9164af6f05ebc885a28f09d1a0057c6 | |
| parent | Add prelude function for URL Query (#4135) (diff) | |
| download | sharkey-fa5ea45726ef55c9cb7802ea8c03310ed04a444f.tar.gz sharkey-fa5ea45726ef55c9cb7802ea8c03310ed04a444f.tar.bz2 sharkey-fa5ea45726ef55c9cb7802ea8c03310ed04a444f.zip | |
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.
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 0 insertions, 2 deletions
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 |