Skip to content

Instantly share code, notes, and snippets.

@kena0ki
Created August 11, 2017 16:53
Show Gist options
  • Save kena0ki/1f5963f8419d228c1ce7d26b15553e1f to your computer and use it in GitHub Desktop.
Save kena0ki/1f5963f8419d228c1ce7d26b15553e1f to your computer and use it in GitHub Desktop.
Recipe for React(from eclipse/node)
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