summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Baker <tyler.baker@linaro.org>2017-05-12 08:55:20 -0700
committerTyler Baker <tyler.baker@linaro.org>2017-05-12 08:55:20 -0700
commit7178acdb2206a70077285b5458654b0ae40d62d7 (patch)
tree14afe8cb153dab64810541f9bf7a3533cb0d52f7
parent6853f081d0c2b9839bf247faafd46ad6f2e17c01 (diff)
Dockerfile: switch to local mirrors and bump version to 2017.05
Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
-rw-r--r--Dockerfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 03d13db..3468a2b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -42,14 +42,15 @@ RUN /start.sh \
# Install latest
RUN /start.sh \
- && git clone -b master https://git.linaro.org/lava/lava-dispatcher.git /root/lava-dispatcher \
+ && git clone https://github.com/kernelci/lava-dispatcher.git -b master /root/lava-dispatcher \
&& cd /root/lava-dispatcher \
- && git checkout 2017.4 \
- && git clone -b master https://git.linaro.org/lava/lava-server.git /root/lava-server \
+ && git checkout release \
+ && git clone -b master https://github.com/kernelci/lava-server.git /root/lava-server \
&& cd /root/lava-server \
- && git checkout 2017.4 \
+ && git checkout release \
&& git config --global user.name "Docker Build" \
&& git config --global user.email "info@kernelci.org" \
+ && git fetch https://review.linaro.org/lava/lava-server refs/changes/03/19403/2 && git cherry-pick FETCH_HEAD \
&& echo "cd \${DIR} && dpkg -i *.deb" >> /root/lava-server/share/debian-dev-build.sh \
&& cd /root/lava-dispatcher && /root/lava-server/share/debian-dev-build.sh -p lava-dispatcher \
&& cd /root/lava-server && /root/lava-server/share/debian-dev-build.sh -p lava-server \