Skip to content

Commit

Permalink
switch to non-snapshot buildroot, update buildroot and kernel configs
Browse files Browse the repository at this point in the history
  • Loading branch information
nlf committed Dec 11, 2015
1 parent 9f42c25 commit a7fe915
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 99 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ RUN apt-get update && apt-get install -y unzip \
ENV ROOTFS /overlay

RUN mkdir -p /build
ENV BUILDROOT_VERSION 20151106
RUN curl -L -o /build/buildroot.tar.bz2 http://buildroot.uclibc.org/downloads/snapshots/buildroot-$BUILDROOT_VERSION.tar.bz2 && \
ENV BUILDROOT_VERSION 2015.11
RUN curl -L -o /build/buildroot.tar.bz2 http://buildroot.uclibc.org/downloads/buildroot-$BUILDROOT_VERSION.tar.bz2 && \
cd /build && \
tar xf buildroot.tar.bz2 && \
mv buildroot-$BUILDROOT_VERSION buildroot && \
rm /build/buildroot.tar.bz2

# Add docker to our overlay
Expand All @@ -26,7 +27,7 @@ RUN curl -L -o $ROOTFS/usr/bin/docker https://get.docker.io/builds/Linux/x86_64/
chmod +x $ROOTFS/usr/bin/docker

# Copy our custom overlay
ENV VERSION 1.4.0
ENV VERSION 1.5.0
COPY rootfs $ROOTFS
RUN echo $VERSION > $ROOTFS/etc/version

Expand Down
Loading

0 comments on commit a7fe915

Please sign in to comment.