2017-07-02 18:13:23 +02:00
|
|
|
# This Dockerfile generates the docker image that gets used by Gitlab CI
|
|
|
|
# To build it:
|
|
|
|
# sudo docker build -t buildroot/base support/docker
|
|
|
|
# sudo docker push buildroot/base
|
|
|
|
|
|
|
|
FROM debian:stable
|
|
|
|
LABEL maintainer="Buildroot mailing list <buildroot@buildroot.org>" \
|
|
|
|
vendor="Buildroot" \
|
|
|
|
description="Container with everything needed to run Buildroot"
|
|
|
|
|
|
|
|
# Setup environment
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
# The container has no package lists, so need to update first
|
2018-02-04 15:44:22 +01:00
|
|
|
RUN dpkg --add-architecture i386 && \
|
|
|
|
apt-get update -y -qq && \
|
|
|
|
apt-get install -y -qq --no-install-recommends \
|
|
|
|
build-essential cmake libc6:i386 gcc-multilib \
|
|
|
|
bc ca-certificates file locales rsync \
|
|
|
|
cvs bzr git mercurial subversion wget \
|
|
|
|
cpio unzip \
|
|
|
|
libncurses5-dev \
|
|
|
|
python-nose2 python-pexpect qemu-system-arm qemu-system-x86 && \
|
|
|
|
apt-get -q -y autoremove && \
|
|
|
|
apt-get -q -y clean
|
2017-07-02 18:13:23 +02:00
|
|
|
|
|
|
|
# To be able to generate a toolchain with locales, enable one UTF-8 locale
|
2018-02-04 15:44:22 +01:00
|
|
|
RUN sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen && \
|
|
|
|
/usr/sbin/locale-gen
|
2017-07-02 18:13:23 +02:00
|
|
|
|
2018-02-04 15:44:22 +01:00
|
|
|
RUN useradd -ms /bin/bash br-user && \
|
|
|
|
chown -R br-user:br-user /home/br-user
|
2018-01-06 16:28:33 +01:00
|
|
|
|
|
|
|
USER br-user
|
|
|
|
WORKDIR /home/br-user
|
|
|
|
ENV HOME /home/br-user
|
|
|
|
ENV LC_ALL en_US.UTF-8
|