diff options
author | Chocobozzz <me@florianbigard.com> | 2021-03-05 10:18:19 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-03-05 10:18:19 +0100 |
commit | ada9762f81fa48d50db69a2312075e71326e71fd (patch) | |
tree | 747e9b5343e871c8e2aded58dc08c19d327810b9 | |
parent | a2eba50b8eee6d13b46425af05ef24025a173801 (diff) | |
download | PeerTube-ada9762f81fa48d50db69a2312075e71326e71fd.tar.gz PeerTube-ada9762f81fa48d50db69a2312075e71326e71fd.tar.zst PeerTube-ada9762f81fa48d50db69a2312075e71326e71fd.zip |
Add build-essentials if architecture not supported
bcrypt needs to be built on arm64 for example
-rw-r--r-- | support/docker/production/Dockerfile.buster | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/docker/production/Dockerfile.buster b/support/docker/production/Dockerfile.buster index f06a22c00..b3822964d 100644 --- a/support/docker/production/Dockerfile.buster +++ b/support/docker/production/Dockerfile.buster | |||
@@ -7,7 +7,7 @@ ARG NPM_RUN_BUILD_OPTS | |||
7 | 7 | ||
8 | # Install dependencies | 8 | # Install dependencies |
9 | RUN apt update \ | 9 | RUN apt update \ |
10 | && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu \ | 10 | && apt install -y --no-install-recommends openssl ffmpeg python ca-certificates gnupg gosu build-essential \ |
11 | && gosu nobody true \ | 11 | && gosu nobody true \ |
12 | && rm /var/lib/apt/lists/* -fR | 12 | && rm /var/lib/apt/lists/* -fR |
13 | 13 | ||