mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00

Such invasive updates shouldn't be needed. And if, we'd notice. Change-Id: I8915ad0f8b348c1bb532c261a73ea2ab6d602565 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/67187 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
22 lines
554 B
Docker
22 lines
554 B
Docker
FROM manibase
|
|
|
|
RUN \
|
|
useradd -p locked -m mani && \
|
|
apt-get -qq update && \
|
|
apt-get -qq 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
|
|
|
|
ENV GIT_SSL_NO_VERIFY=1
|
|
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"]
|