-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
72 lines (70 loc) · 1.35 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
FROM debian:buster
RUN apt-get update \
&& env DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
bc \
binutils \
bison \
bmake \
build-essential \
bzip2 \
chrpath \
cpio \
curl \
debianutils \
diffstat \
file \
flex \
g++ \
gawk \
gcc \
gfortran \
git \
git-lfs \
gzip \
iputils-ping \
libdevmapper-dev \
libegl1-mesa \
libfdt-dev \
liblz4-dev \
libncurses5-dev \
libopenblas-dev \
libsdl1.2-dev \
libssl-dev \
libsystemd-dev \
locales \
lz4 \
mercurial \
mesa-common-dev \
patch \
perl \
pylint3 \
python \
python-pip \
python3 \
python3-git \
python3-jinja2 \
python3-pexpect \
python3-pip \
python3-subunit \
rsync \
socat \
ssh \
sudo \
tar \
texinfo \
unzip \
vim \
wget \
whois \
xterm \
xxd \
xz-utils \
zip \
zstd \
&& apt-get autoremove && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && chmod a+x /usr/bin/repo
RUN useradd -u 1000 oe-builder
RUN mkdir /home/oe-builder
RUN chown oe-builder:oe-builder /home/oe-builder
RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.UTF-8