Skip to content

Commit

Permalink
Update solus
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Mar 9, 2024
1 parent 2f010fc commit f91716a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions solus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f91716a

Please sign in to comment.