diff options
| author | lbonn <lbonn@users.noreply.github.com> | 2019-07-17 09:58:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-17 09:58:39 +0200 |
| commit | b11e4ab227bed2e368646cb348e41a4603ed55e0 (patch) | |
| tree | 8f5430210f314fc3ef7aead29beecf99047b8894 /scripts/ci/Dockerfile.checkout | |
| parent | f68e1d59f0a0ed4341dad3b16d4979b1b63336d7 (diff) | |
| parent | 5463396b1d47a122f5aef9a619244fd1777c0b56 (diff) | |
| download | meta-updater-b11e4ab227bed2e368646cb348e41a4603ed55e0.tar.gz | |
Merge pull request #537 from advancedtelematic/ci/oe-selftest
Ci/oe selftest
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/ | ||
