-
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.
- Loading branch information
Showing
1 changed file
with
12 additions
and
4 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 |
---|---|---|
|
@@ -3,20 +3,28 @@ LABEL maintainer "TAKANO Mitsuhiro <[email protected]>" | |
|
||
RUN eopkg dr Solus | ||
RUN eopkg rr Solus | ||
RUN eopkg ar Solus https://mirrors.rit.edu/solus/packages/shannon/eopkg-index.xml.xz | ||
RUN eopkg ar Solus http://mirrors.rit.edu/solus/packages/shannon/eopkg-index.xml.xz | ||
RUN eopkg rdb -y | ||
RUN eopkg ur | ||
RUN eopkg up | ||
RUN eopkg install -y git | ||
RUN eopkg up -y | ||
|
||
RUN eopkg install -y perl | ||
RUN usysconf run -f ssl-certs | ||
|
||
RUN eopkg install -y git | ||
ENV ORIGIN=https://github.com/torvalds/linux.git | ||
RUN git clone --depth 1 ${ORIGIN} /build-kernel/linux | ||
RUN while :; do cd /build-kernel/linux && git fetch --unshallow && break || sleep 5; done | ||
RUN cd /build-kernel/linux && git pull --all | ||
|
||
RUN eopkg install -y llvm clang lld | ||
# RUN eopkg install -y linux-headers linux-lts-headers linux-current-headers | ||
RUN eopkg install -y llvm llvm-clang lldb | ||
RUN eopkg install -yc system.devel | ||
RUN eopkg install -y make | ||
RUN eopkg install -y rpm | ||
|
||
RUN eopkg install -y libelf-devel | ||
|
||
COPY ./entrypoint.sh / | ||
RUN chmod 755 /entrypoint.sh | ||
EXPOSE 8000 | ||
|