mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-14 13:44:49 +08:00
16 lines
373 B
Text
16 lines
373 B
Text
|
FROM fedora:31
|
||
|
|
||
|
ENV LANG C
|
||
|
# qt5-qtbase-devel skipped
|
||
|
RUN dnf install -y passwd sudo git make gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel bluez-libs-devel libatomic
|
||
|
|
||
|
# 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"]
|