-
Notifications
You must be signed in to change notification settings - Fork 42
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
1 parent
9f30574
commit 430afde
Showing
13 changed files
with
250 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
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-1 -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.1-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.1-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,4 @@ | ||
FROM silex/emacs:29.1-alpine-ci | ||
|
||
RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh | ||
ENV PATH="/root/.eldev/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.1-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-1 -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.1 | ||
|
||
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.1-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,4 @@ | ||
FROM silex/emacs:29.1-ci | ||
|
||
RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh | ||
ENV PATH="/root/.eldev/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.1-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
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