Files
proxmark3/docker/fedora-43/Dockerfile
T
2025-11-04 01:01:02 +01:00

29 lines
777 B
Docker

FROM fedora:rawhide
ENV LANG=C
# qt5-qtbase-devel skipped
RUN dnf install -y passwd sudo git make cmake gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel lz4-devel bluez-libs-devel python3-devel openssl-devel gd-devel libatomic findutils
RUN yum -y update
RUN yum -y install mesa-libOpenCL ocl-icd-devel
# uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Create rrg user
RUN useradd -ms /bin/bash rrg
RUN passwd -d rrg
ARG UART_GID
# dialout group may already exist on another numeric ID than on host
RUN if [ -n "${UART_GID}" ]; then \
groupadd -g ${UART_GID} mydialout || true; \
usermod -aG ${UART_GID} rrg; \
fi
RUN printf 'rrg ALL=(ALL) ALL\n' | tee -a /etc/sudoers
USER rrg
WORKDIR "/home/rrg"
CMD ["/bin/bash"]