Skip to content

Instantly share code, notes, and snippets.

@jonoirwinrsa
Created May 14, 2019 08:23
Show Gist options
  • Save jonoirwinrsa/a4636318724b555a93a4c99e5caf5f2c to your computer and use it in GitHub Desktop.
Save jonoirwinrsa/a4636318724b555a93a4c99e5caf5f2c to your computer and use it in GitHub Desktop.
Docker image for expo
FROM node:lts-alpine
# Install Ruby
RUN apk update && apk upgrade && apk --update add \
git \
bash \
curl \
wget \
zip \
unzip \
ruby \
ruby-rdoc \
ruby-irb \
ruby-dev \
openssh \
g++ \
make \
ruby-rake \
ruby-io-console \
ruby-bigdecimal \
ruby-json \
ruby-bundler \
libstdc++ \
tzdata \
bash \
ca-certificates \
&& echo 'gem: --no-document' > /etc/gemrc
# Install Fastlane
RUN gem install fastlane
# Install Expo CLI
RUN npm install expo-cli --global
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment