add pip when building the docker image instead

This commit is contained in:
iceman1001 2022-10-28 21:59:17 +02:00
commit 038407a6ab
3 changed files with 41 additions and 1 deletions

View file

@ -7,6 +7,9 @@ RUN pacman-db-upgrade
# bluez skipped, can't be installed in docker
RUN pacman -S --noconfirm sudo git base-devel cmake libusb readline bzip2 arm-none-eabi-gcc arm-none-eabi-newlib python --needed
RUN pacman -S --noconfirm python-pip
RUN python3 -m pip install ansicolors sslcrypto
# Create rrg user
RUN useradd -ms /bin/bash rrg
RUN passwd -d rrg

View file

@ -1,3 +1,3 @@
#!/bin/bash
docker run --volume=$(pwd)/../..:/home/rrg/proxmark3 -it pm3-arch:1.0
docker run --volume=$(pwd)/../..:/home/rrg/proxmark3 -w /home/rrg/proxmark3 -it pm3-arch:1.0