-
Notifications
You must be signed in to change notification settings - Fork 43
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
15 changed files
with
320 additions
and
24 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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM nixos/nix | ||
|
||
ADD https://api.github.com/repos/purcell/nix-emacs-ci/git/refs/heads/master /tmp/cache | ||
RUN nix-env -iA cachix -f https://cachix.org/api/v1/install | ||
RUN cachix use emacs-ci | ||
RUN nix-env -iA emacs-29-2 -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz | ||
RUN nix --extra-experimental-features nix-command copy --no-require-sigs --to /nix-emacs $(type -p emacs) | ||
RUN cd /nix-emacs/nix/store && ln -s *emacs* emacs | ||
|
||
FROM alpine:3.14 | ||
|
||
RUN apk add --no-cache \ | ||
curl \ | ||
gnupg \ | ||
openssh-client | ||
|
||
COPY --from=0 /nix-emacs/nix/store /nix/store | ||
ENV PATH="/nix/store/emacs/bin:$PATH" | ||
|
||
CMD ["emacs"] |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM silex/emacs:29.2-alpine | ||
|
||
RUN apk add --no-cache git make |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM silex/emacs:29.2-alpine-ci | ||
|
||
RUN apk add --no-cache python3 | ||
|
||
RUN git clone https://github.com/cask/cask /root/.cask | ||
ENV PATH="/root/.cask/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM silex/emacs:29.2-alpine-ci | ||
|
||
RUN apk add --no-cache unzip | ||
|
||
RUN curl -fsSL https://raw.githubusercontent.com/emacs-eask/cli/master/webinstall/install.sh | sh | ||
ENV PATH="/root/.local/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM silex/emacs:29.2-alpine-ci | ||
|
||
RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh | ||
ENV PATH="/root/.local/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM silex/emacs:29.2-alpine-ci | ||
|
||
RUN git clone https://github.com/conao3/keg.el.git /root/.keg | ||
ENV PATH="/root/.keg/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM nixos/nix | ||
|
||
ADD https://api.github.com/repos/purcell/nix-emacs-ci/git/refs/heads/master /tmp/cache | ||
RUN nix-env -iA cachix -f https://cachix.org/api/v1/install | ||
RUN cachix use emacs-ci | ||
RUN nix-env -iA emacs-29-2 -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz | ||
RUN nix --extra-experimental-features nix-command copy --no-require-sigs --to /nix-emacs $(type -p emacs) | ||
RUN cd /nix-emacs/nix/store && ln -s *emacs* emacs | ||
|
||
FROM debian | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
curl \ | ||
gnupg \ | ||
openssh-client \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY --from=0 /nix-emacs/nix/store /nix/store | ||
ENV PATH="/nix/store/emacs/bin:$PATH" | ||
|
||
CMD ["emacs"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM silex/emacs:29.2 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y git make && \ | ||
rm -rf /var/lib/apt/lists/* |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM silex/emacs:29.2-ci | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y python3 && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN git clone https://github.com/cask/cask /root/.cask | ||
ENV PATH="/root/.cask/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM silex/emacs:29.2-ci | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y unzip && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://raw.githubusercontent.com/emacs-eask/cli/master/webinstall/install.sh | sh | ||
ENV PATH="/root/.local/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM silex/emacs:29.2-ci | ||
|
||
RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh | ||
ENV PATH="/root/.local/bin:$PATH" |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM silex/emacs:29.2-ci | ||
|
||
RUN git clone https://github.com/conao3/keg.el.git /root/.keg | ||
ENV PATH="/root/.keg/bin:$PATH" |
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
Oops, something went wrong.