2023-08-13 03:14:28 +00:00
|
|
|
FROM alpine:3.17 AS build
|
|
|
|
|
|
|
|
RUN apk add --no-cache build-base musl-dev git autoconf make texinfo gnutls-dev ncurses-dev gawk
|
|
|
|
|
|
|
|
|
|
|
|
FROM build AS build-emacs
|
|
|
|
|
|
|
|
RUN git clone --depth 1 --branch emacs-29.1 https://git.savannah.gnu.org/git/emacs.git /root/emacs
|
|
|
|
WORKDIR /root/emacs
|
|
|
|
RUN mkdir /root/dist
|
|
|
|
RUN ./autogen.sh
|
|
|
|
RUN ./configure --prefix /usr --without-x --without-sound
|
|
|
|
RUN make
|
|
|
|
RUN make DESTDIR="/root/dist" install
|
2023-07-13 03:14:22 +00:00
|
|
|
|
2023-08-13 03:14:28 +00:00
|
|
|
|
|
|
|
FROM build AS build-org-mode
|
|
|
|
COPY --from=build-emacs /root/dist/ /
|
|
|
|
RUN mkdir /root/dist
|
|
|
|
RUN mkdir /root/org-mode && git -C /root/org-mode init && git -C /root/org-mode remote add origin https://git.savannah.gnu.org/git/emacs/org-mode.git && git -C /root/org-mode fetch origin 70a082c9fbf6fd7d05fb56b26c6f2039b8edd478 && git -C /root/org-mode checkout FETCH_HEAD
|
|
|
|
WORKDIR /root/org-mode
|
|
|
|
RUN make compile
|
|
|
|
RUN make DESTDIR="/root/dist" install
|
|
|
|
|
|
|
|
|
|
|
|
FROM rustlang/rust:nightly-alpine3.17
|
|
|
|
RUN apk add --no-cache musl-dev ncurses gnutls
|
2023-07-14 05:59:51 +00:00
|
|
|
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
|
2023-08-13 03:14:28 +00:00
|
|
|
COPY --from=build-emacs /root/dist/ /
|
|
|
|
COPY --from=build-org-mode /root/dist/ /
|