proxmark3/docker/parrot-core-latest/Dockerfile

29 lines
807 B
Docker
Raw Normal View History

2021-12-15 08:27:24 +08:00
FROM parrotsec/core:latest
ENV LANG C
ENV DEBIAN_FRONTEND noninteractive
# qtbase5-dev skipped
RUN apt-get update && \
2022-10-29 06:39:35 +08:00
apt-get upgrade -y && \
2021-12-15 08:27:24 +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 && \
2021-12-15 08:27:24 +08:00
apt-get clean
2023-01-16 02:54:56 +08:00
RUN apt-get install -y python3-minimal && \
apt-get install -y python3-pip && \
apt-get clean && \
2022-10-29 05:50:41 +08:00
python3 -m pip install ansicolors sslcrypto
2023-01-16 02:54:56 +08:00
RUN apt-get install -y opencl-dev && \
apt-get clean
2021-12-15 08:27:24 +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"]