We are using etherpad-lite as a submodule, to build it in our CI with a given list of plugins.
Being checked out as a submodule, there is no .git directory in the etherpad-lite directory, so these two lines will fail.
IIUC, this is used to allow running git inside the image to find out the version of etherpad - would it be possible to pass to skip this and e.g., set the version statically?
https://github.com/ether/etherpad-lite/blob/08f199178d2932cc0ec956aaeb3f62e8a535598a/Dockerfile#L116-L117
We are using etherpad-lite as a submodule, to build it in our CI with a given list of plugins. Being checked out as a submodule, there is no
.git
directory in theetherpad-lite
directory, so these two lines will fail.IIUC, this is used to allow running
git
inside the image to find out the version of etherpad - would it be possible to pass to skip this and e.g., set the version statically?