jderusse / docker-gitsplit

75 stars 10 forks source link

Fix missing libssh2 lib in Dockerfile #25

Closed Korbeil closed 3 years ago

Korbeil commented 3 years ago

After my README upate, a Docker hub build has been triggered and following failure was showing if we tried to use last image:

docker run --rm -t -e GH_TOKEN -v ~/.cache/gitsplit:/cache/gitsplit -v ${PWD}:/srv jderusse/gitsplit gitsplit --ref "${CIRCLE_BRANCH}"
Error loading shared library libssh2.so.1: No such file or directory (needed by /bin/gitsplit)

This PR resolve this issue by adding libssh dependency in the Dockerfile.

jderusse commented 3 years ago

thank you @Korbeil