mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-30 08:23:42 +02:00

This adds `libudev` which is linked by `libusb`. Generally, this wouldn't be required with shared libraries, however we ask pkg- config for the full dependency graph to support static libraries alike. Change-Id: I50f5333a7a9eae174eff8ae9cf451de3080f9fa8 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/66987 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net>
19 lines
448 B
Docker
19 lines
448 B
Docker
FROM manibase
|
|
|
|
RUN \
|
|
useradd -p locked -m mani && \
|
|
dnf install -q -y git gcc ccache make systemd-devel \
|
|
pciutils-devel libusb-devel libusbx-devel libftdi-devel \
|
|
libjaylink-devel && \
|
|
dnf clean -q -y all
|
|
|
|
USER mani
|
|
RUN \
|
|
cd && \
|
|
mkdir .ccache && chown mani:mani .ccache && \
|
|
git clone https://review.coreboot.org/flashrom.git
|
|
|
|
ENV DEVSHELL /bin/bash
|
|
COPY mani-wrapper.sh /home/mani/
|
|
ENTRYPOINT ["/bin/sh", "/home/mani/mani-wrapper.sh"]
|