10 lines
184 B
Docker
10 lines
184 B
Docker
FROM debian:stable-slim
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y \
|
|
android-tools-adb \
|
|
android-tools-fastboot
|
|
COPY . /magisk
|
|
WORKDIR /magisk
|
|
CMD bash reinstall-magisk-on-lineageos
|