-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (32 loc) · 716 Bytes
/
Dockerfile
File metadata and controls
36 lines (32 loc) · 716 Bytes
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
# Use 32-bit Ubuntu 18.04 base for x86 build
FROM i386/ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
# Install all build dependencies
RUN dpkg --add-architecture i386 && apt-get update && apt-get install -y --no-install-recommends \
build-essential \
git \
wget \
curl \
ca-certificates \
python3 \
python3-pip \
unzip \
bc \
bison \
flex \
libssl-dev \
libncurses5-dev \
pkg-config \
libusb-1.0-0-dev \
u-boot-tools \
device-tree-compiler \
dfu-util \
zlib1g-dev \
qemu-user-static \
coreutils \
gcc-multilib \
perl \
perl-modules \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /src
CMD ["/bin/bash"]