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
|
|
|
|
|
2018-02-04 15:44:25 +01:00
|
|
|
# We use a specific tag for the base image *and* the corresponding date
|
|
|
|
# for the repository., so do not forget to update the apt-sources.list
|
|
|
|
# file that is shipped next to this Dockerfile.
|
2018-02-04 15:44:24 +01:00
|
|
|
FROM debian:stretch-20171210
|
2018-02-04 15:44:25 +01:00
|
|
|
|
2017-07-02 18:13:23 +02:00
|
|
|
LABEL maintainer="Buildroot mailing list <buildroot@buildroot.org>" \
|
|
|
|
vendor="Buildroot" \
|
|
|
|
description="Container with everything needed to run Buildroot"
|
|
|
|
|
|
|
|
# Setup environment
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
2018-02-04 15:44:25 +01:00
|
|
|
# This repository can be a bit slow at times. Don't panic...
|
|
|
|
COPY apt-sources.list /etc/apt/sources.list
|
|
|
|
|
2017-07-02 18:13:23 +02:00
|
|
|
# The container has no package lists, so need to update first
|
2018-02-04 15:44:22 +01:00
|
|
|
RUN dpkg --add-architecture i386 && \
|
2018-02-04 15:44:23 +01:00
|
|
|
apt-get update -y && \
|
|
|
|
apt-get install -y --no-install-recommends \
|
2018-02-04 15:44:22 +01:00
|
|
|
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 && \
|
2018-02-04 15:44:23 +01:00
|
|
|
apt-get -y autoremove && \
|
|
|
|
apt-get -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
|