1
0
Fork 0

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
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -2,7 +2,7 @@ FROM node:14-bullseye-slim
# Install dependencies # Install dependencies
RUN apt update \ 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 \ && gosu nobody true \
&& rm /var/lib/apt/lists/* -fR && rm /var/lib/apt/lists/* -fR