Install git in docker image

Can be needed to install plugins
This commit is contained in:
Chocobozzz
2022-03-07 13:39:50 +01:00
parent 41878d3397
commit 2c7d736bd3

View File

@@ -2,7 +2,7 @@ FROM node:14-bullseye-slim
# Install dependencies
RUN apt update \
&& apt install -y --no-install-recommends openssl ffmpeg python3 ca-certificates gnupg gosu build-essential curl \
&& apt install -y --no-install-recommends openssl ffmpeg python3 ca-certificates gnupg gosu build-essential curl git \
&& gosu nobody true \
&& rm /var/lib/apt/lists/* -fR