-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (33 loc) · 705 Bytes
/
Dockerfile
File metadata and controls
41 lines (33 loc) · 705 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
37
38
39
40
41
FROM ubuntu:xenial
MAINTAINER Andy Voigt <voigt-andy@hotmail.de>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -qy apt-utils
RUN apt-get -qy install locales
RUN locale-gen --no-purge en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN apt-get install -qy \
git \
build-essential \
gawk \
pkg-config \
gettext \
automake \
autoconf \
autopoint \
libtool \
bison \
flex \
zlib1g-dev \
libgmp3-dev \
libmpfr-dev \
libmpc-dev \
texinfo \
mc \
libncurses5-dev \
nano \
vim \
autopoint \
gperf \
python-docutils
RUN git clone https://bitbucket.org/padavan/rt-n56u.git /opt/rt-n56u
RUN cd /opt/rt-n56u/toolchain-mipsel && ./clean_sources && ./build_toolchain_3.4.x