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.
 
 
 
 
 

15 lines
342 B

FROM mingc/android-build-box:latest
# Install Node.js for Bubblewrap
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
# Install Bubblewrap
RUN npm install -g @bubblewrap/cli
WORKDIR /app
# Copy build script
COPY build-simple.sh /app/
RUN chmod +x /app/build-simple.sh
ENTRYPOINT ["/app/build-simple.sh"]