Fix: Add git to Dockerfile for pip git+ dependencies

This commit is contained in:
Your Name 2026-01-01 13:31:47 +07:00
parent 61aae31ea3
commit a41b9d2143

View file

@ -5,6 +5,7 @@ RUN apt-get update && apt-get install -y \
curl \ curl \
gnupg \ gnupg \
ffmpeg \ ffmpeg \
git \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ && curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \ && apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*