Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.74 KB

README.md

File metadata and controls

45 lines (34 loc) · 1.74 KB

Docker commands

  1. Build the image
docker build -t expo .
  1. Run the container
docker run -it --name expo_container expo 

Create expo app

Inside container CLI, create your expo app:

npx create-expo-app StickerSmash --template blank
cd StickerSmash
npx expo install react-dom react-native-web @expo/metro-runtime

Build your app locally using:

eas build --platform android --local

References