From 3b3c3558a10d777a78192bd267de72fc2b3f9de1 Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Tue, 4 Jun 2024 02:51:26 +0200 Subject: [PATCH] feat: :sparkles: Enable git lfs --- Dockerfile | 4 ++++ alpine/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1355423..172b054 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,3 +54,7 @@ USER root #Install OpenSSL RUN apt-get install -y openssl + +#Install git lfs +RUN apt-get install -y git-lfs +RUN git lfs install --system \ No newline at end of file diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 73dde67..a5dde96 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -31,3 +31,7 @@ USER root #Install OpenSSL RUN apk add --no-cache openssl + +#Install git lfs +RUN apk add --no-cache git-lfs +RUN git lfs install --system \ No newline at end of file