diff options
| author | lbonn <lbonn@users.noreply.github.com> | 2018-06-27 16:01:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-27 16:01:51 +0200 |
| commit | b08439c2756ee1cc4020d92ce0abf087e64e94ef (patch) | |
| tree | fd22981b32d615e881f6ed495cfd8df1510b372a /scripts/ci/Dockerfile.bitbake | |
| parent | 81bdec797138ce2cdcfcea666caa5e64c8e4feb6 (diff) | |
| parent | ea7cf6a4a8cc4dcd04dac6fcdd6faf606f56e115 (diff) | |
| download | meta-updater-b08439c2756ee1cc4020d92ce0abf087e64e94ef.tar.gz | |
Merge pull request #348 from advancedtelematic/ci/dockerize
Ci/dockerize
Diffstat (limited to 'scripts/ci/Dockerfile.bitbake')
| -rw-r--r-- | scripts/ci/Dockerfile.bitbake | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/ci/Dockerfile.bitbake b/scripts/ci/Dockerfile.bitbake new file mode 100644 index 0000000..4dfafec --- /dev/null +++ b/scripts/ci/Dockerfile.bitbake | |||
| @@ -0,0 +1,36 @@ | |||
| 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 | qemu \ | ||
| 26 | socat \ | ||
| 27 | texinfo \ | ||
| 28 | unzip \ | ||
| 29 | wget \ | ||
| 30 | xterm \ | ||
| 31 | xz-utils | ||
| 32 | |||
| 33 | RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen | ||
| 34 | ENV LC_ALL="en_US.UTF-8" | ||
| 35 | ENV LANG="en_US.UTF-8" | ||
| 36 | ENV LANGUAGE="en_US.UTF-8" | ||
