Skip to content

Commit 1ee242a

Browse files
V1.2: Add Python, pyenv, pip3, setuptools
1 parent 4b847a6 commit 1ee242a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ USER 1000
6565
RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
6666
ENV PATH="/home/linuxbrew/.linuxbrew/bin:${PATH}"
6767

68+
# Python pyenv pip3 setuptools
69+
USER 1000
70+
WORKDIR $HOME
71+
RUN brew install [email protected] pyenv
72+
RUN python3.9 -m pip install --upgrade pip
73+
RUN python3.9 -m pip install --upgrade setuptools
74+
6875
# clean
6976
USER 0
7077
RUN apt autoremove --purge -y && apt clean && apt autoclean && rm -rf /var/lib/apt/lists/*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Docker image for Android reverse engineering tools. Android逆向工程工具Doc
55

66
1. V1.0: Add vnc server, jdk 11, Jadx
77
2. V1.1: Add Homebrew
8+
3. V1.2: Add Python, pyenv, pip3, setuptools
89

910
# Usage
1011

0 commit comments

Comments
 (0)