proxmark3/docker/ubuntu-20.04/Dockerfile

29 lines
798 B
Text
Raw Normal View History

2020-06-08 08:53:13 +08:00
FROM ubuntu:20.04
2024-09-10 06:14:37 +08:00
ENV LANG=C
ENV DEBIAN_FRONTEND=noninteractive
2020-06-08 08:53:13 +08:00
# qtbase5-dev skipped
RUN apt-get update && \
2022-10-29 06:14:31 +08:00
apt-get upgrade -y && \
2020-06-08 08:53:13 +08:00
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 liblz4-dev libbluetooth-dev libpython3-dev libssl-dev sudo && \
2020-06-08 08:53:13 +08:00
apt-get clean
2023-01-16 02:40:52 +08:00
RUN apt-get install -y python3-minimal && \
apt-get install -y python3-pip && \
apt-get clean && \
2022-10-29 06:14:31 +08:00
python3 -m pip install ansicolors sslcrypto
2023-01-16 02:40:52 +08:00
RUN apt-get install -y opencl-dev && \
apt-get clean
2020-06-08 08:53:13 +08:00
# 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"]