mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-12 23:40:05 +08:00
adapted docker ubuntu-20
This commit is contained in:
parent
5245c6801d
commit
04ed4eb1d6
3 changed files with 22 additions and 4 deletions
docker/ubuntu-20.04
|
@ -4,10 +4,15 @@ ENV LANG C
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
# qtbase5-dev skipped
|
# qtbase5-dev skipped
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
apt-get upgrade -y && \
|
||||||
apt-get dist-upgrade -y && \
|
apt-get dist-upgrade -y && \
|
||||||
apt-get install -y --no-install-recommends git ca-certificates build-essential cmake pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev libbz2-dev libbluetooth-dev libpython3-dev libssl-dev sudo && \
|
apt-get install -y --no-install-recommends git ca-certificates build-essential cmake pkg-config libreadline-dev gcc-arm-none-eabi libnewlib-dev libbz2-dev libbluetooth-dev libpython3-dev libssl-dev sudo && \
|
||||||
apt-get clean
|
apt-get clean
|
||||||
|
|
||||||
|
RUN apt install -y python3-minimal && \
|
||||||
|
apt install -y python3-pip && \
|
||||||
|
python3 -m pip install ansicolors sslcrypto
|
||||||
|
|
||||||
# Create rrg user
|
# Create rrg user
|
||||||
RUN useradd -ms /bin/bash rrg
|
RUN useradd -ms /bin/bash rrg
|
||||||
RUN passwd -d rrg
|
RUN passwd -d rrg
|
||||||
|
|
|
@ -1,9 +1,22 @@
|
||||||
|
# Notes on run_tests.sh script
|
||||||
|
This script does both setup the mirrors and pip install and then run a
|
||||||
|
bunch of different builds with make and cmake together with the different combos
|
||||||
|
of RDV4, GENERIC, BTADDON combos.
|
||||||
|
|
||||||
|
If all tests OK, the script will finish.
|
||||||
|
|
||||||
|
|
||||||
# Notes to run tests
|
# Notes to run tests
|
||||||
|
The script is to be run in proxmark root folder inside the docker env.
|
||||||
|
|
||||||
|
```
|
||||||
|
docker/ubuntu-20.04/run_tests.sh;
|
||||||
|
```
|
||||||
|
|
||||||
|
Or if you want to run single test,
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y python3-minimal
|
make clean; make -j
|
||||||
sudo apt install -y python3-pip
|
|
||||||
python3 -m pip install ansicolors sslcrypto
|
|
||||||
tools/pm3_tests.sh --long
|
tools/pm3_tests.sh --long
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
docker run --volume=$(pwd)/../..:/home/rrg/proxmark3 -it pm3-ubuntu-20.04:1.0
|
docker run --volume=$(pwd)/../..:/home/rrg/proxmark3 -w /home/rrg/proxmark3 -it pm3-ubuntu-20.04:1.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue