blob: 9c51cc021cb4e2fcf6462a96666b99d7fca2999d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
ca-certificates \
curl \
file \
g++ \
git \
make \
openssh-client \
patch \
perl \
python2.7 \
python3 \
software-properties-common \
sudo \
wget \
xz-utils
COPY build-toolchain.sh /tmp/
RUN /tmp/build-toolchain.sh x86_64
|