docker updates

This commit is contained in:
Philippe Teuwen
2026-02-27 00:01:14 +01:00
parent 601bdc371a
commit 9d97588c84
20 changed files with 73 additions and 15 deletions
+6 -1
View File
@@ -3,13 +3,18 @@ FROM archlinux:base
ENV LANG=C.UTF-8
RUN pacman -Syu --noconfirm
RUN pacman-db-upgrade
# qt5-base skipped
# bluez skipped, can't be installed in docker
RUN pacman -S --noconfirm sudo git base-devel cmake libusb readline bzip2 lz4 gd arm-none-eabi-gcc arm-none-eabi-newlib --needed
# OpenCL for hitag2crack
RUN pacman -S --noconfirm ocl-icd
ARG SKIPQT=false
RUN if [ "${SKIPQT}" = "false" ]; then \
pacman -S --noconfirm qt6-base; \
fi
# Create rrg user
RUN useradd -ms /bin/bash rrg
RUN passwd -d rrg