forked from progrium/rootbuilder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
22 lines (21 loc) · 1003 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM onlinelabs/ubuntu:trusty
MAINTAINER Jeff Lindsay <[email protected]>
ENV BR_VERSION 2014.02
RUN DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get install -y \
wget \
build-essential \
libncurses-dev \
rsync \
unzip \
bc \
gnupg \
python \
libc6-armel \
language-pack-en-base
WORKDIR /tmp
RUN wget -nv http://buildroot.uclibc.org/downloads/buildroot-$BR_VERSION.tar.gz
RUN tar -zxf buildroot-$BR_VERSION.tar.gz && mv buildroot-$BR_VERSION buildroot
ADD ./package/nginx /tmp/buildroot/package/nginx
RUN sed '/menu "Networking applications"/a\source \"package\/nginx\/Config.in"' buildroot/package/Config.in > tmpfile
RUN mv tmpfile buildroot/package/Config.in
WORKDIR /tmp/buildroot