mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-28 15:33:42 +02:00

Change-Id: I2f7aebe602ebdb0a4748640e281b9a92146f0ca8 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/33338 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
22 lines
561 B
Docker
22 lines
561 B
Docker
FROM manibase
|
|
|
|
RUN \
|
|
useradd -p locked -m mani && \
|
|
apt-get -qq update && \
|
|
apt-get -qq upgrade && \
|
|
apt-get -qq dist-upgrade && \
|
|
apt-get -qqy install gcc make git doxygen ccache pkg-config \
|
|
libpci-dev libusb-dev libftdi-dev libusb-1.0-0-dev && \
|
|
{ apt-get -qqy install libjaylink-dev || true; } && \
|
|
apt-get clean
|
|
|
|
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"]
|