2021-12-15 07:28:25 +08:00
|
|
|
FROM fedora:35
|
|
|
|
|
|
|
|
ENV LANG C
|
|
|
|
# qt5-qtbase-devel skipped
|
2022-10-29 07:13:01 +08:00
|
|
|
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 python3-devel openssl-devel libatomic findutils
|
|
|
|
|
|
|
|
RUN yum -y update
|
|
|
|
RUN yum -y install cmake python-pip
|
|
|
|
RUN python3 -m pip install ansicolors sslcrypto
|
2021-12-15 07:28:25 +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"]
|