diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-07 13:39:50 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-07 13:39:50 +0100 |
commit | 2c7d736bd3089503117edb101d5a7d0f8fa3ee7e (patch) | |
tree | 917daab57b1ce8a927ccdc0297b06cadc9c190bc /support/docker | |
parent | 41878d33971473be3f4255c335b25b1ba869428f (diff) | |
download | PeerTube-2c7d736bd3089503117edb101d5a7d0f8fa3ee7e.tar.gz PeerTube-2c7d736bd3089503117edb101d5a7d0f8fa3ee7e.tar.zst PeerTube-2c7d736bd3089503117edb101d5a7d0f8fa3ee7e.zip |
Install git in docker image
Can be needed to install plugins
Diffstat (limited to 'support/docker')
-rw-r--r-- | support/docker/production/Dockerfile.bullseye | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/docker/production/Dockerfile.bullseye b/support/docker/production/Dockerfile.bullseye index e55da3307..c57b878ee 100644 --- a/support/docker/production/Dockerfile.bullseye +++ b/support/docker/production/Dockerfile.bullseye | |||
@@ -2,7 +2,7 @@ FROM node:14-bullseye-slim | |||
2 | 2 | ||
3 | # Install dependencies | 3 | # Install dependencies |
4 | RUN apt update \ | 4 | RUN apt update \ |
5 | && apt install -y --no-install-recommends openssl ffmpeg python3 ca-certificates gnupg gosu build-essential curl \ | 5 | && apt install -y --no-install-recommends openssl ffmpeg python3 ca-certificates gnupg gosu build-essential curl git \ |
6 | && gosu nobody true \ | 6 | && gosu nobody true \ |
7 | && rm /var/lib/apt/lists/* -fR | 7 | && rm /var/lib/apt/lists/* -fR |
8 | 8 | ||