diff options
| author | Laurent Bonnans <laurent.bonnans@here.com> | 2018-06-21 16:21:52 +0200 |
|---|---|---|
| committer | Laurent Bonnans <laurent.bonnans@here.com> | 2018-06-22 10:10:13 +0200 |
| commit | 991c2752340bfd8140e6254ca1e9cd3c48bceff7 (patch) | |
| tree | 596da1fa7764cf22f6dc6ec1e1702d434fcaca54 /scripts/ci/Dockerfile.bitbake | |
| parent | 7dc8262c88cd40687fdf52770cf581c2b1c1e796 (diff) | |
| download | meta-updater-991c2752340bfd8140e6254ca1e9cd3c48bceff7.tar.gz | |
Try to bitbake on CI inside docker
Diffstat (limited to 'scripts/ci/Dockerfile.bitbake')
| -rw-r--r-- | scripts/ci/Dockerfile.bitbake | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/scripts/ci/Dockerfile.bitbake b/scripts/ci/Dockerfile.bitbake new file mode 100644 index 0000000..984f421 --- /dev/null +++ b/scripts/ci/Dockerfile.bitbake | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | FROM debian:stable | ||
| 2 | LABEL Description="Image for bitbaking" | ||
| 3 | |||
| 4 | RUN sed -i 's#deb http://deb.debian.org/debian stable main#deb http://deb.debian.org/debian stable main contrib#g' /etc/apt/sources.list | ||
| 5 | RUN sed -i 's#deb http://deb.debian.org/debian stable-updates main#deb http://deb.debian.org/debian stable-updates main contrib#g' /etc/apt/sources.list | ||
| 6 | RUN apt-get update -q && apt-get install -qy \ | ||
| 7 | build-essential \ | ||
| 8 | bzip2 \ | ||
| 9 | chrpath \ | ||
| 10 | cpio \ | ||
| 11 | default-jre \ | ||
| 12 | diffstat \ | ||
| 13 | gawk \ | ||
| 14 | gcc-multilib \ | ||
| 15 | git-core \ | ||
| 16 | iputils-ping \ | ||
| 17 | iproute \ | ||
| 18 | libpython-dev \ | ||
| 19 | libsdl1.2-dev \ | ||
| 20 | locales \ | ||
| 21 | procps \ | ||
| 22 | python \ | ||
| 23 | python3 \ | ||
| 24 | python3-pexpect \ | ||
| 25 | python3-requests \ | ||
| 26 | qemu \ | ||
| 27 | socat \ | ||
| 28 | texinfo \ | ||
| 29 | unzip \ | ||
| 30 | wget \ | ||
| 31 | xterm \ | ||
| 32 | xz-utils | ||
| 33 | |||
| 34 | RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen | ||
| 35 | ENV LC_ALL="en_US.UTF-8" | ||
| 36 | ENV LANG="en_US.UTF-8" | ||
| 37 | ENV LANGUAGE="en_US.UTF-8" | ||
