diff options
author | Kim <1877318+kimsible@users.noreply.github.com> | 2020-02-17 10:01:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 10:01:22 +0100 |
commit | c5621bd23bce038671cd81149a0aa5e238558b67 (patch) | |
tree | ce6db83cf385c3280e63d1e5629e164574da413e | |
parent | c9925e2d13f3b525badb0e8c8a8206bfa759b83c (diff) | |
download | PeerTube-c5621bd23bce038671cd81149a0aa5e238558b67.tar.gz PeerTube-c5621bd23bce038671cd81149a0aa5e238558b67.tar.zst PeerTube-c5621bd23bce038671cd81149a0aa5e238558b67.zip |
Fix missing python dependency in Dockerfile.buster (#2495)
* Fix missing youtube-dl dependency in buster docker image
* Fix missing python dependency in buster docker image
-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 515aeb5f1..dde643782 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 gnupg gosu \ | 10 | && apt install -y --no-install-recommends openssl ffmpeg python gnupg gosu \ |
11 | && gosu nobody true \ | 11 | && gosu nobody true \ |
12 | && rm /var/lib/apt/lists/* -fR | 12 | && rm /var/lib/apt/lists/* -fR |
13 | 13 | ||