diff options
Diffstat (limited to 'scripts/ci/Dockerfile.checkout')
| -rw-r--r-- | scripts/ci/Dockerfile.checkout | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/ci/Dockerfile.checkout b/scripts/ci/Dockerfile.checkout new file mode 100644 index 0000000..5210c6b --- /dev/null +++ b/scripts/ci/Dockerfile.checkout | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | FROM debian:stretch-slim | ||
| 2 | LABEL Description="Image for checking out updater-repo" | ||
| 3 | |||
| 4 | RUN 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 | ||
| 5 | RUN 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 | ||
| 6 | RUN apt-get update -q && apt-get install -qy \ | ||
| 7 | git \ | ||
| 8 | repo \ | ||
| 9 | xmlstarlet | ||
| 10 | |||
| 11 | # checkout script | ||
| 12 | RUN mkdir /scripts | ||
| 13 | COPY checkout-oe.sh /scripts/ | ||
