summaryrefslogtreecommitdiffstats
path: root/scripts/ci/Dockerfile.bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/Dockerfile.bitbake')
-rw-r--r--scripts/ci/Dockerfile.bitbake37
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 @@
1FROM debian:stable
2LABEL Description="Image for bitbaking"
3
4RUN 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
5RUN 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
6RUN 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
34RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
35ENV LC_ALL="en_US.UTF-8"
36ENV LANG="en_US.UTF-8"
37ENV LANGUAGE="en_US.UTF-8"