Dockerfile 614 B

123456789101112131415161718192021222324
  1. ARG VARIANT="bullseye"
  2. # FROM mcr.microsoft.com/vscode/devcontainers/java:0-16-${VARIANT}
  3. FROM openjdk:11
  4. WORKDIR /opt
  5. # RUN apt-get update && \
  6. # apt-get install -y sudo curl git-core wget unzip
  7. RUN git clone https://github.com/anasfik/flutter-spy.git && \
  8. cd flutter-spy && \
  9. chmod +x INSTALLER.sh && \
  10. ./INSTALLER.sh
  11. RUN wget https://github.com/skylot/jadx/releases/download/v1.4.7/jadx-1.4.7.zip && \
  12. unzip jadx-1.4.7.zip -d jadx && \
  13. rm -rf jadx-1.4.7.zip
  14. ENV PATH="/opt/jadx/bin:${PATH}"
  15. WORKDIR /app
  16. VOLUME [ "/app" ]
  17. CMD ["/bin/bash", "-c", "while true; do sleep 1000; done"]