Git LFS isn't installed in periphery #1492

Open
opened 2026-03-22 17:30:48 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @wutscher on GitHub (Nov 21, 2025).

I recently setup a build with one of my repos, which utilizes GIT-LFS to handle large files. The build kept failing until I docker exec'ed into the container and ran the following commands:

apt update
apt install git-lfs
git lfs install

I think adding this block bin/periphery/debian-deps.sh should resolve the issue, but I'm not familiar with the codebase.

For now I am using a fairly hacky workaround in the docker-compose config to get things to work:

periphery:
  image: ghcr.io/moghtech/komodo-periphery
  # ...
  command: bash -c 'apt update && apt install git-lfs && git lfs install && periphery'
  # ...

I really appreciate all the great work you guys are putting into this project, thank you!

Originally created by @wutscher on GitHub (Nov 21, 2025). I recently setup a build with one of my repos, which utilizes [GIT-LFS](https://git-lfs.com/) to handle large files. The build kept failing until I docker exec'ed into the container and ran the following commands: ```sh apt update apt install git-lfs git lfs install ``` I think adding this block `bin/periphery/debian-deps.sh` should resolve the issue, but I'm not familiar with the codebase. For now I am using a fairly hacky workaround in the docker-compose config to get things to work: ```yaml periphery: image: ghcr.io/moghtech/komodo-periphery # ... command: bash -c 'apt update && apt install git-lfs && git lfs install && periphery' # ... ``` I really appreciate all the great work you guys are putting into this project, thank you!
Author
Owner

@FreeSoftwareServers commented on GitHub (Dec 13, 2025):

Second this issue! Thanks for providing a solution along with workaround!

@FreeSoftwareServers commented on GitHub (Dec 13, 2025): Second this issue! Thanks for providing a solution along with workaround!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#1492