Skip to content

Instantly share code, notes, and snippets.

@the-mgi
Created August 9, 2022 07:08
Show Gist options
  • Select an option

  • Save the-mgi/25645c476bb372dbeb815a97b80cd751 to your computer and use it in GitHub Desktop.

Select an option

Save the-mgi/25645c476bb372dbeb815a97b80cd751 to your computer and use it in GitHub Desktop.
FROM node:14.17
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
&& apt update \
&& apt -y install yarn
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment