You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
472 B
24 lines
472 B
FROM reactnativecommunity/react-native-android:2.1
|
|
# set locale to utf8 for fastlane
|
|
ENV LANG C.UTF-8
|
|
ENV LC_ALL C.UTF-8
|
|
# install bundler
|
|
RUN gem install bundler
|
|
|
|
|
|
all: build
|
|
VERSION = 2.1
|
|
|
|
|
|
build:
|
|
docker build --tag itporbit/react-native-android:${VERSION} .
|
|
|
|
|
|
push: build
|
|
docker push itporbit/react-native-android:${VERSION}
|
|
git tag react-native-android/${VERSION} HEAD
|
|
git push --tags
|
|
|
|
|
|
run: build
|
|
docker run --rm -ti itporbit/react-native-android:${VERSION} |