forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves Issue [armbian#385](armbian#385)
- Loading branch information
1 parent
533bdda
commit b25d314
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
FROM ubuntu:16.04 | ||
RUN apt-get update | ||
RUN apt-get install -y git build-essential binutils | ||
RUN apt-get install -y git build-essential binutils apt-cacher-ng | ||
WORKDIR /root | ||
RUN git clone https://github.com/igorpecovnik/lib/ | ||
RUN git clone https://github.com/igorpecovnik/lib/ --depth 1 | ||
RUN cp lib/compile.sh . | ||
VOLUME ["root/compiled", "root/output"] | ||
ENTRYPOINT ["./compile.sh"] | ||
CMD ["BOARD=orangepipcplus", "PROGRESS_DISPLAY=plain", "RELEASE=jessie", "PROGRESS_LOG_TO_FILE=yes", "KERNEL_ONLY=no", "BUILD_DESKTOP=no", "BRANCH=default"] |