summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatti Vacek <patrickvacek@gmail.com>2020-12-15 10:52:07 +0100
committerGitHub <noreply@github.com>2020-12-15 10:52:07 +0100
commite5c4bc30147ac012476ba9aa36831a130dcf3180 (patch)
treed743f505b160a56bef3813ce5e2e31bcfd74a6b4
parent14f693fc330812c289e2be24a338426f99e2a151 (diff)
parent6ea7917e6d4edbae63016b1fc0c53cfd4225c632 (diff)
downloadmeta-updater-e5c4bc30147ac012476ba9aa36831a130dcf3180.tar.gz
Merge pull request #788 from advancedtelematic/fix/python3-for-repo
Use python3 to get repo working again.
-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 5210c6b..8b9e052 100644
--- a/scripts/ci/Dockerfile.checkout
+++ b/scripts/ci/Dockerfile.checkout
@@ -5,8 +5,11 @@ RUN sed -i 's#deb http://deb.debian.org/debian stretch main#deb http://deb.debia
5RUN sed -i 's#deb http://deb.debian.org/debian stretch-updates main#deb http://deb.debian.org/debian stretch-updates main contrib#g' /etc/apt/sources.list 5RUN sed -i 's#deb http://deb.debian.org/debian stretch-updates main#deb http://deb.debian.org/debian stretch-updates main contrib#g' /etc/apt/sources.list
6RUN apt-get update -q && apt-get install -qy \ 6RUN apt-get update -q && apt-get install -qy \
7 git \ 7 git \
8 repo \ 8 xmlstarlet \
9 xmlstarlet 9 python3 \
10 repo
11
12RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 2
10 13
11# checkout script 14# checkout script
12RUN mkdir /scripts 15RUN mkdir /scripts