https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32951 --- Comment #5 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- This is what we do for ktd's docker image # Add yarn repo RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && wget -O- -q https://dl.yarnpkg.com/debian/pubkey.gpg \ | gpg --dearmor \ | tee /usr/share/keyrings/yarnkey.gpg >/dev/null \ && echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list # Install Node.js (includes npm) and Yarn RUN apt-get update \ && apt-get -y install nodejs yarn \ && rm -rf /var/cache/apt/archives/* \ && rm -rf /var/lib/api/lists/* -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.