Merge pull request #1872 from IPdotSetAF/git-lfs-not-supported

fix: installed git-lfs in docker image
This commit is contained in:
Mauricio Siu
2025-05-17 02:09:03 -06:00
committed by GitHub
2 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ COPY . /usr/src/app
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y python3 make g++ git && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y python3 make g++ git git-lfs && git lfs install && rm -rf /var/lib/apt/lists/*
# Install dependencies
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile