Created
May 14, 2019 08:23
-
-
Save jonoirwinrsa/a4636318724b555a93a4c99e5caf5f2c to your computer and use it in GitHub Desktop.
Docker image for expo
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 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