Skip to content

Instantly share code, notes, and snippets.

View Rhymond's full-sized avatar
🥑
Bravo Avocado

Raymond Rhymond

🥑
Bravo Avocado
  • United Kingdom
View GitHub Profile
@Rhymond
Rhymond / Dockerfile
Last active July 8, 2018 16:41
Dockerize create-react-app or create-react-native-app
FROM node:latest
RUN apt-get update && \
apt-get -y install software-properties-common git-core build-essential automake unzip python-dev python-setuptools && \
rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/facebook/watchman.git /tmp/watchman
WORKDIR /tmp/watchman
RUN ./autogen.sh
RUN ./configure