From da379906cbf6903d8a4dcf5eafaba45eb7347ba6 Mon Sep 17 00:00:00 2001 From: Refringe Date: Sat, 7 Dec 2024 22:04:27 -0500 Subject: [PATCH] Install Git & Git LFS on Docker Image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 27c5923..b4c6b46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG PROD ENV PROD=$PROD # Update and install dependencies -RUN apt-get update && apt-get install -y curl unzip && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y curl unzip git git-lfs && rm -rf /var/lib/apt/lists/* # Install Latest Bun RUN curl -fsSL https://bun.sh/install | bash