https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=35079 --- Comment #19 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- (In reply to Marcel de Rooy from comment #18)
Just adding a few lines for anyone who reads this later. Resolved situation by:
Using NODE_MAJOR=18
# npm / nodejs mkdir -p /etc/apt/keyrings; \ curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg; \ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list; \ apt-get update; \ apt-get -yq install nodejs; \ npm install -g yarn; \
Note that you cannot apt-get install nodejs npm. This gives a conflict. npm is part of the above install of nodejs.
Yes, see also https://gitlab.com/koha-community/koha-testing-docker/-/issues/404 -- You are receiving this mail because: You are watching all bug changes.