From f75d1dfad3691562110a70523ad892b8fa480064 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Mon, 16 May 2016 11:27:56 -0600 Subject: util/docker: Add docker files for coreboot-sdk & jenkins builders Add the coreboot specific docker configuration files to the coreboot repo. These have been copied directly from Patrick's repo where they had been being stored. - coreboot-sdk: debian sid with the coreboot toolchain - coreboot-jenkins-node: built on top of the coreboot-sdk, adds the pieces required for building everything with the coreboot jenkins builders. Change-Id: I8628d4edb298264e814e02e124a8bfb4bc04e0c7 Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/14830 Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens Reviewed-by: Patrick Georgi --- util/docker/coreboot-jenkins-node/Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 util/docker/coreboot-jenkins-node/Dockerfile (limited to 'util/docker/coreboot-jenkins-node/Dockerfile') diff --git a/util/docker/coreboot-jenkins-node/Dockerfile b/util/docker/coreboot-jenkins-node/Dockerfile new file mode 100644 index 0000000000..b675f80997 --- /dev/null +++ b/util/docker/coreboot-jenkins-node/Dockerfile @@ -0,0 +1,22 @@ +FROM coreboot/coreboot-sdk:1.37 +MAINTAINER Patrick Georgi +USER root +ADD https://raw.githubusercontent.com/pgeorgi/encapsulate/master/encapsulate.c /tmp/encapsulate.c +COPY authorized_keys /home/coreboot/.ssh/authorized_keys +RUN mount |grep "on /dev type tmpfs" > /dev/null || exit 1 +RUN apt-get -y update && \ + apt-get -y install \ + curl p7zip-full unrar-free libusb-1.0-0-dev pkg-config libreadline-dev libglib2.0-dev \ + subversion libpci-dev libusb-dev libftdi-dev \ + lua5.3 liblua5.3-dev \ + ccache openjdk-8-jre-headless openssh-server libssl-dev vim-common libgmp-dev && \ + apt-get clean && \ + mkdir /home/coreboot/.ccache && chown coreboot /home/coreboot/.ccache && \ + mkdir -p /home/coreboot/.ssh && chown -R coreboot /home/coreboot/.ssh && chmod 0700 /home/coreboot/.ssh && chmod 0600 /home/coreboot/.ssh/authorized_keys && \ + gcc -o /usr/sbin/encapsulate /tmp/encapsulate.c && chown root /usr/sbin/encapsulate && chmod +s /usr/sbin/encapsulate && \ + mkdir /var/run/sshd && chmod 0755 /var/run/sshd +VOLUME /home/coreboot/.ccache +VOLUME /data/cache +ENTRYPOINT mkdir /dev/cb-build && chown coreboot /dev/cb-build && /usr/sbin/sshd -p 49151 -D +EXPOSE 49151 +ENV PATH $PATH:/usr/sbin -- cgit v1.2.3