summaryrefslogtreecommitdiffstats
path: root/lava-slave/Dockerfile
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2017-10-25 12:15:18 +0200
committerCorentin LABBE <clabbe@baylibre.com>2017-10-25 12:15:18 +0200
commit88baa3f2459a5d32150048745003f4987b964be2 (patch)
tree1c0d54b118d661f9076696d19370078a2442507a /lava-slave/Dockerfile
parent49d59f4fa7b6f6dc99bbb56e30c94b5ae692f2f7 (diff)
import lava-slave
Diffstat (limited to 'lava-slave/Dockerfile')
-rw-r--r--lava-slave/Dockerfile58
1 files changed, 58 insertions, 0 deletions
diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile
new file mode 100644
index 0000000..6aece71
--- /dev/null
+++ b/lava-slave/Dockerfile
@@ -0,0 +1,58 @@
+FROM bitnami/minideb:stretch
+
+RUN apt-get update
+
+# Add services helper utilities to start and stop LAVA
+COPY scripts/stop.sh .
+COPY scripts/start.sh .
+
+RUN \
+ echo 'lava-server lava-server/instance-name string lava-slave-instance' | debconf-set-selections && \
+ echo 'locales locales/locales_to_be_generated multiselect C.UTF-8 UTF-8, en_US.UTF-8 UTF-8 ' | debconf-set-selections && \
+ echo 'locales locales/default_environment_locale select en_US.UTF-8' | debconf-set-selections && \
+ DEBIAN_FRONTEND=noninteractive apt-get -y install \
+ locales \
+ lava-dispatcher \
+ lava-dev \
+ git \
+ vim \
+ sudo \
+ python-setproctitle \
+ tftpd-hpa \
+ u-boot-tools \
+ device-tree-compiler \
+ qemu-system \
+ qemu-system-arm \
+ qemu-system-i386 \
+ qemu-kvm \
+ xnbd-server \
+ e2fsprogs
+
+RUN wget http://images.validation.linaro.org/production-repo/production-repo.key.asc \
+ && apt-key add production-repo.key.asc \
+ && echo 'deb http://images.validation.linaro.org/production-repo/ stretch-backports main' > /etc/apt/sources.list.d/lava.list \
+ && apt-get clean && apt-get update
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get -y install lava-dispatcher
+
+#RUN \
+# git clone https://github.com/kernelci/lava-server.git -b release /root/lava-server && \
+# git clone https://github.com/kernelci/lava-dispatcher.git -b master /root/lava-dispatcher && \
+# cd /root/lava-dispatcher && \
+# git checkout release && \
+# git config --global user.name "Docker Build" && \
+# git config --global user.email "info@kernelci.org" && \
+# echo "cd \${DIR} && dpkg -i *.deb" >> /root/lava-server/share/debian-dev-build.sh && \
+# sleep 2 && \
+# /root/lava-server/share/debian-dev-build.sh -p lava-dispatcher
+
+COPY configs/lava-slave /etc/lava-dispatcher/lava-slave
+
+COPY configs/tftpd-hpa /etc/default/tftpd-hpa
+
+#TODO made this customizable, 1000 ports by default is too much
+RUN sed -i 's,XNBD_PORT_RANGE_MIN.*,XNBD_PORT_RANGE_MIN=55950,' /usr/lib/python2.7/dist-packages/lava_dispatcher/pipeline/utils/constants.py
+
+EXPOSE 69/udp 80
+
+CMD /start.sh