How to install Node.js with yarn package manager in Dockerfile – Debian
I would like to install Node.js with yarn.pkg in my Dockerfile. The Dockerfile is for a Laravel8/PHP8 project. This is my actual try: RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && echo…