123456789101112131415161718192021222324 |
- ARG VARIANT="bullseye"
- FROM openjdk:11
- WORKDIR /opt
- RUN git clone https://github.com/anasfik/flutter-spy.git && \
- cd flutter-spy && \
- chmod +x INSTALLER.sh && \
- ./INSTALLER.sh
- RUN wget https://github.com/skylot/jadx/releases/download/v1.4.7/jadx-1.4.7.zip && \
- unzip jadx-1.4.7.zip -d jadx && \
- rm -rf jadx-1.4.7.zip
- ENV PATH="/opt/jadx/bin:${PATH}"
- WORKDIR /app
- VOLUME [ "/app" ]
- CMD ["/bin/bash", "-c", "while true; do sleep 1000; done"]
|