diff options
| author | Acid Chicken (硫酸鶏) <root@acid-chicken.com> | 2018-11-27 00:32:56 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-11-27 00:32:56 +0900 |
| commit | 33243e7176cfe542ed6c422539f720658e4de92c (patch) | |
| tree | ff1df9b42ef0a8225dc2fa8b79d5f8f26c939a84 | |
| parent | Add yarn.lock to .gitignore (#3408) (diff) | |
| download | misskey-33243e7176cfe542ed6c422539f720658e4de92c.tar.gz misskey-33243e7176cfe542ed6c422539f720658e4de92c.tar.bz2 misskey-33243e7176cfe542ed6c422539f720658e4de92c.zip | |
Fix #3409 (#3410)
* Update Dockerfile
* Update Dockerfile
| -rw-r--r-- | Dockerfile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile index 078b96a159..8aea9d54a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,18 +8,20 @@ WORKDIR /misskey FROM base AS builder +RUN unlink /usr/bin/free RUN apk add --no-cache \ - gcc \ - g++ \ - libc-dev \ - python \ autoconf \ automake \ file \ + g++ \ + gcc \ + libc-dev \ + libtool \ make \ nasm \ pkgconfig \ - libtool \ + procps \ + python \ zlib-dev RUN npm i -g node-gyp |