deployment templates for lichen
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add openssh-keygen to entrypoint for deploy key generation

authored by

notplants and committed by
notplants
dd37035a f7ca53fd

+2 -2
+2 -2
docker-compose/entrypoint.sh
··· 4 4 # disable bubblewrap sandbox — not supported inside Docker 5 5 rm -f /usr/bin/bwrap 6 6 7 - # install bash (shell feature) and git-daemon (provides git-http-backend for clone/push) 8 - apk add --no-cache bash git-daemon > /dev/null 2>&1 || true 7 + # install runtime dependencies 8 + apk add --no-cache bash git-daemon openssh-keygen > /dev/null 2>&1 || true 9 9 10 10 # set git identity for auto-commit 11 11 if command -v git > /dev/null 2>&1; then