aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/docker
diff options
context:
space:
mode:
authorKim <1877318+kimsible@users.noreply.github.com>2020-02-17 10:01:22 +0100
committerGitHub <noreply@github.com>2020-02-17 10:01:22 +0100
commitc5621bd23bce038671cd81149a0aa5e238558b67 (patch)
treece6db83cf385c3280e63d1e5629e164574da413e /support/docker
parentc9925e2d13f3b525badb0e8c8a8206bfa759b83c (diff)
downloadPeerTube-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
Diffstat (limited to 'support/docker')
-rw-r--r--support/docker/production/Dockerfile.buster2
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
9RUN apt update \ 9RUN 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