summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleh Avramenko <ext-oleh.avramenko@here.com>2021-07-09 11:45:18 +0300
committerOleh Avramenko <ext-oleh.avramenko@here.com>2021-07-09 12:54:59 +0300
commit7f0b835031e11bb9d1d2fa1aa2ecb3c788edb295 (patch)
tree176fa7d31a4981a21fcf0973999d6e7f15111fe9
parent68af8d437163c0658b79137fc33f0df1b269d3e5 (diff)
downloadmeta-updater-7f0b835031e11bb9d1d2fa1aa2ecb3c788edb295.tar.gz
Fix repo errorfeat/fix-pipeline
Signed-off-by: Oleh Avramenko <ext-oleh.avramenko@here.com>
-rw-r--r--scripts/ci/Dockerfile.checkout7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/ci/Dockerfile.checkout b/scripts/ci/Dockerfile.checkout
index 6bfd9e3..b5619c9 100644
--- a/scripts/ci/Dockerfile.checkout
+++ b/scripts/ci/Dockerfile.checkout
@@ -6,10 +6,13 @@ RUN sed -i 's#deb http://deb.debian.org/debian buster-updates main#deb http://de
6RUN apt-get update -q && apt-get install -qy \ 6RUN apt-get update -q && apt-get install -qy \
7 git \ 7 git \
8 python3 \ 8 python3 \
9 repo \ 9 curl \
10 xmlstarlet 10 xmlstarlet
11 11
12RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 2 12# Install repo
13RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 2 && \
14 curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && \
15 chmod a+x /usr/bin/repo
13 16
14# checkout script 17# checkout script
15RUN mkdir /scripts 18RUN mkdir /scripts