## Problem Yarn v1 is included in the `docker-node` images, however it is receiving only [limited security updates](https://endoflife.date/yarn) and the [guidance has been to migrate](https://yarnpkg.com/migration/overview) to modern Yarn since 2020. Especially for smaller images like Alpine, this dependency contributes to the size of the base, but seems unlikely to be used widely. ## Solution Remove the installation of Yarn v1 from the `docker-node` base images. Document best ways to then add Yarn v1 if needed. ## Alternatives to Consider 1. Take an `ARG` to the base image which chooses a Yarn version to isntall 2. Add a docker variant `no-yarn` which does not contain yarn, but continue to install on other variants 3. Continue as-is installing Yarn 1.22 on all docker-node images