user3502656
user3502656

Reputation: 37

Installing libgit2 and pygit2 in archlinux docker

Trying to install libgit2 and pygit2 in docker. Keep running into errors no matter how I try.

Current docker file: https://pastebin.com/jsbdqeEX
Current error: https://pastebin.com/MVHXUuxa

Thank you for any help you can provide

Upvotes: 0

Views: 186

Answers (1)

marcinowski
marcinowski

Reputation: 359

Well in case you haven't figured it out yet that line says it all:

  /bin/sh: cmake: command not found

You just need

pacman --quiet --noconfirm -S cmake

Upvotes: 1

Related Questions