adding a builder for busybox, on fedora

This commit is contained in:
Vincent Batts 2014-04-07 10:17:09 -04:00
parent 748c7bfcbe
commit d0c780222b
2 changed files with 1053 additions and 0 deletions

15
fedora-busybox/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM fedora
RUN yum install -y bzip2 glibc-static
RUN yum groupinstall -y "Development tools"
RUN curl http://busybox.net/downloads/busybox-1.22.1.tar.bz2 | tar jx
ADD config busybox-1.22.1/.config
RUN cd busybox-1.22.1 && \
make && \
make install && \
cd _install && \
tar cvzf /busybox.tar.gz .
#RUN yum install -y ncurses-devel

1038
fedora-busybox/config Normal file

File diff suppressed because it is too large Load Diff