mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 04:26:41 +08:00
24 lines
909 B
Docker
24 lines
909 B
Docker
FROM opensuse/tumbleweed
|
|
|
|
ENV LANG C
|
|
# libqt5-qtbase-devel skipped
|
|
RUN zypper --non-interactive install --no-recommends shadow sudo git patterns-devel-base-devel_basis gcc-c++ readline-devel libbz2-devel bluez-devel python3-devel libopenssl-devel cross-arm-none-gcc12 cross-arm-none-newlib-devel
|
|
|
|
#RUN zypper addrepo https://download.opensuse.org/repositories/home:wkazubski/openSUSE_Tumbleweed/home:wkazubski.repo && \
|
|
# zypper --gpg-auto-import-keys refresh && \
|
|
# zypper --non-interactive install cross-arm-none-eabi-gcc12 cross-arm-none-eabi-newlib
|
|
|
|
RUN zypper --non-interactive install cmake python3 python3-pip && \
|
|
python3 -m pip install ansicolors sslcrypto
|
|
|
|
RUN zypper --non-interactive install ocl-icd-devel
|
|
|
|
# Create rrg user
|
|
RUN useradd -ms /bin/bash rrg
|
|
RUN passwd -d rrg
|
|
RUN printf 'rrg ALL=(ALL) NOPASSWD: ALL\n' | tee -a /etc/sudoers
|
|
|
|
USER rrg
|
|
WORKDIR "/home/rrg"
|
|
|
|
CMD ["/bin/bash"]
|