summaryrefslogtreecommitdiffstats
path: root/scripts/ci/Dockerfile.checkout
diff options
context:
space:
mode:
authorPatti Vacek <pattivacek@gmail.com>2021-01-28 16:37:29 +0100
committerPatti Vacek <pattivacek@gmail.com>2021-01-29 09:43:46 +0100
commit91abc988f5305e3307e9965a453302472446128a (patch)
tree7acffc0f8a7dc3e02209eda1bcf8793c47a88fcd /scripts/ci/Dockerfile.checkout
parent016854946467909fe97b7b6f29c7b749098af6ad (diff)
downloadmeta-updater-91abc988f5305e3307e9965a453302472446128a.tar.gz
Update dockerfiles to use Debian Buster.fix/python3-repo-bitbake
This should hopefully resolve some python3/repo issues. Signed-off-by: Patti Vacek <pattivacek@gmail.com>
Diffstat (limited to 'scripts/ci/Dockerfile.checkout')
-rw-r--r--scripts/ci/Dockerfile.checkout10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/ci/Dockerfile.checkout b/scripts/ci/Dockerfile.checkout
index 8b9e052..6bfd9e3 100644
--- a/scripts/ci/Dockerfile.checkout
+++ b/scripts/ci/Dockerfile.checkout
@@ -1,13 +1,13 @@
1FROM debian:stretch-slim 1FROM debian:buster-slim
2LABEL Description="Image for checking out updater-repo" 2LABEL Description="Image for checking out updater-repo"
3 3
4RUN sed -i 's#deb http://deb.debian.org/debian stretch main#deb http://deb.debian.org/debian stretch main contrib#g' /etc/apt/sources.list 4RUN sed -i 's#deb http://deb.debian.org/debian buster main#deb http://deb.debian.org/debian buster 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 5RUN sed -i 's#deb http://deb.debian.org/debian buster-updates main#deb http://deb.debian.org/debian buster-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 xmlstarlet \
9 python3 \ 8 python3 \
10 repo 9 repo \
10 xmlstarlet
11 11
12RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 2 12RUN update-alternatives --install /usr/bin/python python /usr/bin/python3 2
13 13