Created
August 11, 2017 16:53
-
-
Save kena0ki/1f5963f8419d228c1ce7d26b15553e1f to your computer and use it in GitHub Desktop.
Recipe for React(from eclipse/node)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM eclipse/node | |
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && \ | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
RUN sudo apt update && sudo apt -y install yarn | |
RUN sudo yarn global add create-react-app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment