summaryrefslogtreecommitdiffstats
path: root/scripts/ci/Dockerfile.checkout
diff options
context:
space:
mode:
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