docker ubuntu

This commit is contained in:
Philippe Teuwen 2021-12-15 01:06:19 +01:00
parent f664b426c8
commit c104ec275b
7 changed files with 49 additions and 2 deletions

View file

@ -2,8 +2,8 @@
```
sudo apt update
sudo apt install python3-minimal
sudo apt install python3-pip
sudo apt install -y python3-minimal
sudo apt install -y python3-pip
python3 -m pip install ansicolors sslcrypto
tools/pm3_tests.sh --long
```

View file

@ -0,0 +1,9 @@
# Notes to run tests
```
sudo apt update
sudo apt install -y python3-minimal
sudo apt install -y python3-pip
python3 -m pip install ansicolors sslcrypto
tools/pm3_tests.sh --long
```

View file

@ -0,0 +1,19 @@
FROM ubuntu:21.04
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
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 sudo && \
apt-get clean
# Create rrg user
RUN useradd -ms /bin/bash rrg
RUN passwd -d rrg
RUN printf 'rrg ALL=(ALL) ALL\n' | tee -a /etc/sudoers
USER rrg
WORKDIR "/home/rrg"
CMD ["/bin/bash"]

View file

@ -0,0 +1,9 @@
# Notes to run tests
```
sudo apt update
sudo apt install -y python3-minimal
sudo apt install -y python3-pip
python3 -m pip install ansicolors sslcrypto
tools/pm3_tests.sh --long
```

View file

@ -0,0 +1,3 @@
#!/bin/bash
docker build -t "pm3-ubuntu-21.04:1.0" .

View file

@ -0,0 +1,4 @@
#!/bin/bash
docker image rm pm3-ubuntu-21.04:1.0
docker image rm ubuntu:21.04

View file

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