diff --git a/bin/images b/bin/images index eae91c53..8f0789ca 100755 --- a/bin/images +++ b/bin/images @@ -103,8 +103,6 @@ class Image tags: tags, tags_with_repository: tags_with_repository, cache: cache, - depends: depends, - depends_with_repository: depends_with_repository, children: children }.to_json end @@ -130,11 +128,7 @@ class Image end def depends - tags[0].split('-')[0..-2].join('-') - end - - def depends_with_repository - format('%s:%s', REPOSITORY, depends) + tags_with_repository.first.split('-')[0..-2].join('-') end def nix_version @@ -157,7 +151,7 @@ def generate_dockerfiles(images) images.each do |image| FileUtils.mkdir_p(image.directory) content = File.read(File.join('templates', image.context, 'Dockerfile')) - content.gsub!('{{DEPENDS}}', image.depends_with_repository.to_s) + content.gsub!('{{DEPENDS}}', image.depends) content.gsub!('{{NIX_VERSION}}', image.nix_version) File.write(image.dockerfile, content) end diff --git a/images/23.4/debian/ci/Dockerfile b/images/23.4/debian/ci/Dockerfile index 81285e19..cae8de32 100644 --- a/images/23.4/debian/ci/Dockerfile +++ b/images/23.4/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:23.4 +FROM ghcr.io/silex/emacs:23.4 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.1/debian/ci/Dockerfile b/images/24.1/debian/ci/Dockerfile index 821f77ba..b4631ed0 100644 --- a/images/24.1/debian/ci/Dockerfile +++ b/images/24.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.1 +FROM ghcr.io/silex/emacs:24.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.1/debian/ci/keg/Dockerfile b/images/24.1/debian/ci/keg/Dockerfile index 980d36f7..b5f1b124 100644 --- a/images/24.1/debian/ci/keg/Dockerfile +++ b/images/24.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.1-ci +FROM ghcr.io/silex/emacs:24.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/24.2/debian/ci/Dockerfile b/images/24.2/debian/ci/Dockerfile index 8ebdd583..08bc7e52 100644 --- a/images/24.2/debian/ci/Dockerfile +++ b/images/24.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.2 +FROM ghcr.io/silex/emacs:24.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.2/debian/ci/keg/Dockerfile b/images/24.2/debian/ci/keg/Dockerfile index 2b2f6a28..6bb45278 100644 --- a/images/24.2/debian/ci/keg/Dockerfile +++ b/images/24.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.2-ci +FROM ghcr.io/silex/emacs:24.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/24.3/debian/ci/Dockerfile b/images/24.3/debian/ci/Dockerfile index aff489a2..650c0241 100644 --- a/images/24.3/debian/ci/Dockerfile +++ b/images/24.3/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.3 +FROM ghcr.io/silex/emacs:24.3 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.3/debian/ci/keg/Dockerfile b/images/24.3/debian/ci/keg/Dockerfile index 8e9c0797..3071ae7d 100644 --- a/images/24.3/debian/ci/keg/Dockerfile +++ b/images/24.3/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.3-ci +FROM ghcr.io/silex/emacs:24.3-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/24.4/debian/ci/Dockerfile b/images/24.4/debian/ci/Dockerfile index af87d941..beec58b7 100644 --- a/images/24.4/debian/ci/Dockerfile +++ b/images/24.4/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.4 +FROM ghcr.io/silex/emacs:24.4 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.4/debian/ci/eldev/Dockerfile b/images/24.4/debian/ci/eldev/Dockerfile index adeee63e..98384d1f 100644 --- a/images/24.4/debian/ci/eldev/Dockerfile +++ b/images/24.4/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.4-ci +FROM ghcr.io/silex/emacs:24.4-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/24.4/debian/ci/keg/Dockerfile b/images/24.4/debian/ci/keg/Dockerfile index cffc3ec9..b0fcc0bd 100644 --- a/images/24.4/debian/ci/keg/Dockerfile +++ b/images/24.4/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.4-ci +FROM ghcr.io/silex/emacs:24.4-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/24.5/debian/ci/Dockerfile b/images/24.5/debian/ci/Dockerfile index 9d54cbb9..6a95956f 100644 --- a/images/24.5/debian/ci/Dockerfile +++ b/images/24.5/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.5 +FROM ghcr.io/silex/emacs:24.5 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/24.5/debian/ci/cask/Dockerfile b/images/24.5/debian/ci/cask/Dockerfile index d4c64334..7c047a59 100644 --- a/images/24.5/debian/ci/cask/Dockerfile +++ b/images/24.5/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.5-ci +FROM ghcr.io/silex/emacs:24.5-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/24.5/debian/ci/eldev/Dockerfile b/images/24.5/debian/ci/eldev/Dockerfile index 0487f141..813cd90b 100644 --- a/images/24.5/debian/ci/eldev/Dockerfile +++ b/images/24.5/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.5-ci +FROM ghcr.io/silex/emacs:24.5-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/24.5/debian/ci/keg/Dockerfile b/images/24.5/debian/ci/keg/Dockerfile index 81f5fa27..c8183b42 100644 --- a/images/24.5/debian/ci/keg/Dockerfile +++ b/images/24.5/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:24.5-ci +FROM ghcr.io/silex/emacs:24.5-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.1/alpine/ci/Dockerfile b/images/25.1/alpine/ci/Dockerfile index 23ea2b3d..2d5df1fd 100644 --- a/images/25.1/alpine/ci/Dockerfile +++ b/images/25.1/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:25.1-alpine +FROM ghcr.io/silex/emacs:25.1-alpine RUN apk add --no-cache git make diff --git a/images/25.1/alpine/ci/cask/Dockerfile b/images/25.1/alpine/ci/cask/Dockerfile index a23ce4d6..68ed11a3 100644 --- a/images/25.1/alpine/ci/cask/Dockerfile +++ b/images/25.1/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-alpine-ci +FROM ghcr.io/silex/emacs:25.1-alpine-ci RUN apk add --no-cache python3 diff --git a/images/25.1/alpine/ci/eldev/Dockerfile b/images/25.1/alpine/ci/eldev/Dockerfile index 6d58f34f..d5e519ae 100644 --- a/images/25.1/alpine/ci/eldev/Dockerfile +++ b/images/25.1/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-alpine-ci +FROM ghcr.io/silex/emacs:25.1-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.1/alpine/ci/keg/Dockerfile b/images/25.1/alpine/ci/keg/Dockerfile index 0ee957d8..d8aad58c 100644 --- a/images/25.1/alpine/ci/keg/Dockerfile +++ b/images/25.1/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-alpine-ci +FROM ghcr.io/silex/emacs:25.1-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.1/debian/ci/Dockerfile b/images/25.1/debian/ci/Dockerfile index 43de196d..5a63d438 100644 --- a/images/25.1/debian/ci/Dockerfile +++ b/images/25.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1 +FROM ghcr.io/silex/emacs:25.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/25.1/debian/ci/cask/Dockerfile b/images/25.1/debian/ci/cask/Dockerfile index f9868bda..7f4e1922 100644 --- a/images/25.1/debian/ci/cask/Dockerfile +++ b/images/25.1/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-ci +FROM ghcr.io/silex/emacs:25.1-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/25.1/debian/ci/eldev/Dockerfile b/images/25.1/debian/ci/eldev/Dockerfile index b7ab7614..6bbff18c 100644 --- a/images/25.1/debian/ci/eldev/Dockerfile +++ b/images/25.1/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-ci +FROM ghcr.io/silex/emacs:25.1-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.1/debian/ci/keg/Dockerfile b/images/25.1/debian/ci/keg/Dockerfile index 9ed1a1e2..4f57ae69 100644 --- a/images/25.1/debian/ci/keg/Dockerfile +++ b/images/25.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.1-ci +FROM ghcr.io/silex/emacs:25.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.2/alpine/ci/Dockerfile b/images/25.2/alpine/ci/Dockerfile index fcd292bf..f9300556 100644 --- a/images/25.2/alpine/ci/Dockerfile +++ b/images/25.2/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:25.2-alpine +FROM ghcr.io/silex/emacs:25.2-alpine RUN apk add --no-cache git make diff --git a/images/25.2/alpine/ci/cask/Dockerfile b/images/25.2/alpine/ci/cask/Dockerfile index 3bebc8f4..6eb5e328 100644 --- a/images/25.2/alpine/ci/cask/Dockerfile +++ b/images/25.2/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-alpine-ci +FROM ghcr.io/silex/emacs:25.2-alpine-ci RUN apk add --no-cache python3 diff --git a/images/25.2/alpine/ci/eldev/Dockerfile b/images/25.2/alpine/ci/eldev/Dockerfile index e1b645ee..8b560b55 100644 --- a/images/25.2/alpine/ci/eldev/Dockerfile +++ b/images/25.2/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-alpine-ci +FROM ghcr.io/silex/emacs:25.2-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.2/alpine/ci/keg/Dockerfile b/images/25.2/alpine/ci/keg/Dockerfile index b69975a9..59283cfe 100644 --- a/images/25.2/alpine/ci/keg/Dockerfile +++ b/images/25.2/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-alpine-ci +FROM ghcr.io/silex/emacs:25.2-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.2/debian/ci/Dockerfile b/images/25.2/debian/ci/Dockerfile index efbdceb2..8c435d8d 100644 --- a/images/25.2/debian/ci/Dockerfile +++ b/images/25.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2 +FROM ghcr.io/silex/emacs:25.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/25.2/debian/ci/cask/Dockerfile b/images/25.2/debian/ci/cask/Dockerfile index 68d0e72a..163fab00 100644 --- a/images/25.2/debian/ci/cask/Dockerfile +++ b/images/25.2/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-ci +FROM ghcr.io/silex/emacs:25.2-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/25.2/debian/ci/eldev/Dockerfile b/images/25.2/debian/ci/eldev/Dockerfile index 7a1fdd51..6dafa495 100644 --- a/images/25.2/debian/ci/eldev/Dockerfile +++ b/images/25.2/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-ci +FROM ghcr.io/silex/emacs:25.2-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.2/debian/ci/keg/Dockerfile b/images/25.2/debian/ci/keg/Dockerfile index 8cbb778e..4605f7dd 100644 --- a/images/25.2/debian/ci/keg/Dockerfile +++ b/images/25.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.2-ci +FROM ghcr.io/silex/emacs:25.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.3/alpine/ci/Dockerfile b/images/25.3/alpine/ci/Dockerfile index 77ab1881..568daa6d 100644 --- a/images/25.3/alpine/ci/Dockerfile +++ b/images/25.3/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:25.3-alpine +FROM ghcr.io/silex/emacs:25.3-alpine RUN apk add --no-cache git make diff --git a/images/25.3/alpine/ci/cask/Dockerfile b/images/25.3/alpine/ci/cask/Dockerfile index dd2717ae..24b294ab 100644 --- a/images/25.3/alpine/ci/cask/Dockerfile +++ b/images/25.3/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-alpine-ci +FROM ghcr.io/silex/emacs:25.3-alpine-ci RUN apk add --no-cache python3 diff --git a/images/25.3/alpine/ci/eldev/Dockerfile b/images/25.3/alpine/ci/eldev/Dockerfile index 103acede..3dc08066 100644 --- a/images/25.3/alpine/ci/eldev/Dockerfile +++ b/images/25.3/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-alpine-ci +FROM ghcr.io/silex/emacs:25.3-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.3/alpine/ci/keg/Dockerfile b/images/25.3/alpine/ci/keg/Dockerfile index 10d8e9e3..cc562d5c 100644 --- a/images/25.3/alpine/ci/keg/Dockerfile +++ b/images/25.3/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-alpine-ci +FROM ghcr.io/silex/emacs:25.3-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/25.3/debian/ci/Dockerfile b/images/25.3/debian/ci/Dockerfile index c732b5ee..15fe56d8 100644 --- a/images/25.3/debian/ci/Dockerfile +++ b/images/25.3/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3 +FROM ghcr.io/silex/emacs:25.3 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/25.3/debian/ci/cask/Dockerfile b/images/25.3/debian/ci/cask/Dockerfile index a8004b30..013fb581 100644 --- a/images/25.3/debian/ci/cask/Dockerfile +++ b/images/25.3/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-ci +FROM ghcr.io/silex/emacs:25.3-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/25.3/debian/ci/eldev/Dockerfile b/images/25.3/debian/ci/eldev/Dockerfile index 73cadecf..2d20cfa9 100644 --- a/images/25.3/debian/ci/eldev/Dockerfile +++ b/images/25.3/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-ci +FROM ghcr.io/silex/emacs:25.3-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/25.3/debian/ci/keg/Dockerfile b/images/25.3/debian/ci/keg/Dockerfile index 9b193d75..5d9b5530 100644 --- a/images/25.3/debian/ci/keg/Dockerfile +++ b/images/25.3/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:25.3-ci +FROM ghcr.io/silex/emacs:25.3-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.1/alpine/ci/Dockerfile b/images/26.1/alpine/ci/Dockerfile index 235bf971..8084f924 100644 --- a/images/26.1/alpine/ci/Dockerfile +++ b/images/26.1/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:26.1-alpine +FROM ghcr.io/silex/emacs:26.1-alpine RUN apk add --no-cache git make diff --git a/images/26.1/alpine/ci/cask/Dockerfile b/images/26.1/alpine/ci/cask/Dockerfile index 293c0beb..5a8b52aa 100644 --- a/images/26.1/alpine/ci/cask/Dockerfile +++ b/images/26.1/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-alpine-ci +FROM ghcr.io/silex/emacs:26.1-alpine-ci RUN apk add --no-cache python3 diff --git a/images/26.1/alpine/ci/eask/Dockerfile b/images/26.1/alpine/ci/eask/Dockerfile index f85135fb..d6923392 100644 --- a/images/26.1/alpine/ci/eask/Dockerfile +++ b/images/26.1/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-alpine-ci +FROM ghcr.io/silex/emacs:26.1-alpine-ci RUN apk add --no-cache unzip diff --git a/images/26.1/alpine/ci/eldev/Dockerfile b/images/26.1/alpine/ci/eldev/Dockerfile index 9063a3b5..f2e7a840 100644 --- a/images/26.1/alpine/ci/eldev/Dockerfile +++ b/images/26.1/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-alpine-ci +FROM ghcr.io/silex/emacs:26.1-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.1/alpine/ci/keg/Dockerfile b/images/26.1/alpine/ci/keg/Dockerfile index 75209249..ef459b99 100644 --- a/images/26.1/alpine/ci/keg/Dockerfile +++ b/images/26.1/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-alpine-ci +FROM ghcr.io/silex/emacs:26.1-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.1/debian/ci/Dockerfile b/images/26.1/debian/ci/Dockerfile index 3130fec1..86b0032e 100644 --- a/images/26.1/debian/ci/Dockerfile +++ b/images/26.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1 +FROM ghcr.io/silex/emacs:26.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/26.1/debian/ci/cask/Dockerfile b/images/26.1/debian/ci/cask/Dockerfile index 2b5d9e79..e4368903 100644 --- a/images/26.1/debian/ci/cask/Dockerfile +++ b/images/26.1/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-ci +FROM ghcr.io/silex/emacs:26.1-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/26.1/debian/ci/eask/Dockerfile b/images/26.1/debian/ci/eask/Dockerfile index 33f9f8f4..d6ed8714 100644 --- a/images/26.1/debian/ci/eask/Dockerfile +++ b/images/26.1/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-ci +FROM ghcr.io/silex/emacs:26.1-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/26.1/debian/ci/eldev/Dockerfile b/images/26.1/debian/ci/eldev/Dockerfile index 68d0ee65..23fb03ef 100644 --- a/images/26.1/debian/ci/eldev/Dockerfile +++ b/images/26.1/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-ci +FROM ghcr.io/silex/emacs:26.1-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.1/debian/ci/keg/Dockerfile b/images/26.1/debian/ci/keg/Dockerfile index 1569acf2..6c01f186 100644 --- a/images/26.1/debian/ci/keg/Dockerfile +++ b/images/26.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.1-ci +FROM ghcr.io/silex/emacs:26.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.2/alpine/ci/Dockerfile b/images/26.2/alpine/ci/Dockerfile index 2ba93a91..d40384fb 100644 --- a/images/26.2/alpine/ci/Dockerfile +++ b/images/26.2/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:26.2-alpine +FROM ghcr.io/silex/emacs:26.2-alpine RUN apk add --no-cache git make diff --git a/images/26.2/alpine/ci/cask/Dockerfile b/images/26.2/alpine/ci/cask/Dockerfile index e6824e2e..4468099b 100644 --- a/images/26.2/alpine/ci/cask/Dockerfile +++ b/images/26.2/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-alpine-ci +FROM ghcr.io/silex/emacs:26.2-alpine-ci RUN apk add --no-cache python3 diff --git a/images/26.2/alpine/ci/eask/Dockerfile b/images/26.2/alpine/ci/eask/Dockerfile index 2aed28fa..e0b7b821 100644 --- a/images/26.2/alpine/ci/eask/Dockerfile +++ b/images/26.2/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-alpine-ci +FROM ghcr.io/silex/emacs:26.2-alpine-ci RUN apk add --no-cache unzip diff --git a/images/26.2/alpine/ci/eldev/Dockerfile b/images/26.2/alpine/ci/eldev/Dockerfile index 85b003c2..49e84b54 100644 --- a/images/26.2/alpine/ci/eldev/Dockerfile +++ b/images/26.2/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-alpine-ci +FROM ghcr.io/silex/emacs:26.2-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.2/alpine/ci/keg/Dockerfile b/images/26.2/alpine/ci/keg/Dockerfile index 23ea27ac..eaccfcda 100644 --- a/images/26.2/alpine/ci/keg/Dockerfile +++ b/images/26.2/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-alpine-ci +FROM ghcr.io/silex/emacs:26.2-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.2/debian/ci/Dockerfile b/images/26.2/debian/ci/Dockerfile index 672f01ab..76ef5c61 100644 --- a/images/26.2/debian/ci/Dockerfile +++ b/images/26.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2 +FROM ghcr.io/silex/emacs:26.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/26.2/debian/ci/cask/Dockerfile b/images/26.2/debian/ci/cask/Dockerfile index 65c8ddd0..d7bdf9f9 100644 --- a/images/26.2/debian/ci/cask/Dockerfile +++ b/images/26.2/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-ci +FROM ghcr.io/silex/emacs:26.2-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/26.2/debian/ci/eask/Dockerfile b/images/26.2/debian/ci/eask/Dockerfile index 3074ea46..1b093036 100644 --- a/images/26.2/debian/ci/eask/Dockerfile +++ b/images/26.2/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-ci +FROM ghcr.io/silex/emacs:26.2-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/26.2/debian/ci/eldev/Dockerfile b/images/26.2/debian/ci/eldev/Dockerfile index 4bf6a48d..0e4ddc1f 100644 --- a/images/26.2/debian/ci/eldev/Dockerfile +++ b/images/26.2/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-ci +FROM ghcr.io/silex/emacs:26.2-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.2/debian/ci/keg/Dockerfile b/images/26.2/debian/ci/keg/Dockerfile index 14dc328c..3d34a8a7 100644 --- a/images/26.2/debian/ci/keg/Dockerfile +++ b/images/26.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.2-ci +FROM ghcr.io/silex/emacs:26.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.3/alpine/ci/Dockerfile b/images/26.3/alpine/ci/Dockerfile index 641ffd57..39686b59 100644 --- a/images/26.3/alpine/ci/Dockerfile +++ b/images/26.3/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:26.3-alpine +FROM ghcr.io/silex/emacs:26.3-alpine RUN apk add --no-cache git make diff --git a/images/26.3/alpine/ci/cask/Dockerfile b/images/26.3/alpine/ci/cask/Dockerfile index 11bb1064..08bd0a8f 100644 --- a/images/26.3/alpine/ci/cask/Dockerfile +++ b/images/26.3/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-alpine-ci +FROM ghcr.io/silex/emacs:26.3-alpine-ci RUN apk add --no-cache python3 diff --git a/images/26.3/alpine/ci/eask/Dockerfile b/images/26.3/alpine/ci/eask/Dockerfile index 9066c214..4b73e286 100644 --- a/images/26.3/alpine/ci/eask/Dockerfile +++ b/images/26.3/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-alpine-ci +FROM ghcr.io/silex/emacs:26.3-alpine-ci RUN apk add --no-cache unzip diff --git a/images/26.3/alpine/ci/eldev/Dockerfile b/images/26.3/alpine/ci/eldev/Dockerfile index 3b554809..9c85d1ff 100644 --- a/images/26.3/alpine/ci/eldev/Dockerfile +++ b/images/26.3/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-alpine-ci +FROM ghcr.io/silex/emacs:26.3-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.3/alpine/ci/keg/Dockerfile b/images/26.3/alpine/ci/keg/Dockerfile index a1ff4047..fecc251a 100644 --- a/images/26.3/alpine/ci/keg/Dockerfile +++ b/images/26.3/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-alpine-ci +FROM ghcr.io/silex/emacs:26.3-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/26.3/debian/ci/Dockerfile b/images/26.3/debian/ci/Dockerfile index 0a056976..33dc9f52 100644 --- a/images/26.3/debian/ci/Dockerfile +++ b/images/26.3/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3 +FROM ghcr.io/silex/emacs:26.3 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/26.3/debian/ci/cask/Dockerfile b/images/26.3/debian/ci/cask/Dockerfile index 6c3d181f..f0db3847 100644 --- a/images/26.3/debian/ci/cask/Dockerfile +++ b/images/26.3/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-ci +FROM ghcr.io/silex/emacs:26.3-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/26.3/debian/ci/eask/Dockerfile b/images/26.3/debian/ci/eask/Dockerfile index 7c23df0d..ae2ce3a7 100644 --- a/images/26.3/debian/ci/eask/Dockerfile +++ b/images/26.3/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-ci +FROM ghcr.io/silex/emacs:26.3-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/26.3/debian/ci/eldev/Dockerfile b/images/26.3/debian/ci/eldev/Dockerfile index 5bcd3e03..2c741173 100644 --- a/images/26.3/debian/ci/eldev/Dockerfile +++ b/images/26.3/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-ci +FROM ghcr.io/silex/emacs:26.3-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/26.3/debian/ci/keg/Dockerfile b/images/26.3/debian/ci/keg/Dockerfile index 14f19db1..795c0119 100644 --- a/images/26.3/debian/ci/keg/Dockerfile +++ b/images/26.3/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:26.3-ci +FROM ghcr.io/silex/emacs:26.3-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/27.1/alpine/ci/Dockerfile b/images/27.1/alpine/ci/Dockerfile index 0dfd9aae..c254aa7e 100644 --- a/images/27.1/alpine/ci/Dockerfile +++ b/images/27.1/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:27.1-alpine +FROM ghcr.io/silex/emacs:27.1-alpine RUN apk add --no-cache git make diff --git a/images/27.1/alpine/ci/cask/Dockerfile b/images/27.1/alpine/ci/cask/Dockerfile index 33bfb6a7..b8c98427 100644 --- a/images/27.1/alpine/ci/cask/Dockerfile +++ b/images/27.1/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-alpine-ci +FROM ghcr.io/silex/emacs:27.1-alpine-ci RUN apk add --no-cache python3 diff --git a/images/27.1/alpine/ci/eask/Dockerfile b/images/27.1/alpine/ci/eask/Dockerfile index 1db29686..6bd05c4f 100644 --- a/images/27.1/alpine/ci/eask/Dockerfile +++ b/images/27.1/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-alpine-ci +FROM ghcr.io/silex/emacs:27.1-alpine-ci RUN apk add --no-cache unzip diff --git a/images/27.1/alpine/ci/eldev/Dockerfile b/images/27.1/alpine/ci/eldev/Dockerfile index 48583624..a5c0be17 100644 --- a/images/27.1/alpine/ci/eldev/Dockerfile +++ b/images/27.1/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-alpine-ci +FROM ghcr.io/silex/emacs:27.1-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/27.1/alpine/ci/keg/Dockerfile b/images/27.1/alpine/ci/keg/Dockerfile index dc5fe333..4d2cf5be 100644 --- a/images/27.1/alpine/ci/keg/Dockerfile +++ b/images/27.1/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-alpine-ci +FROM ghcr.io/silex/emacs:27.1-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/27.1/debian/ci/Dockerfile b/images/27.1/debian/ci/Dockerfile index 490e1e9c..72cd502a 100644 --- a/images/27.1/debian/ci/Dockerfile +++ b/images/27.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1 +FROM ghcr.io/silex/emacs:27.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/27.1/debian/ci/cask/Dockerfile b/images/27.1/debian/ci/cask/Dockerfile index d077572d..dc67e2eb 100644 --- a/images/27.1/debian/ci/cask/Dockerfile +++ b/images/27.1/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-ci +FROM ghcr.io/silex/emacs:27.1-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/27.1/debian/ci/eask/Dockerfile b/images/27.1/debian/ci/eask/Dockerfile index eb072bd2..ffce99e7 100644 --- a/images/27.1/debian/ci/eask/Dockerfile +++ b/images/27.1/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-ci +FROM ghcr.io/silex/emacs:27.1-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/27.1/debian/ci/eldev/Dockerfile b/images/27.1/debian/ci/eldev/Dockerfile index 64cb1aeb..99cf7e97 100644 --- a/images/27.1/debian/ci/eldev/Dockerfile +++ b/images/27.1/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-ci +FROM ghcr.io/silex/emacs:27.1-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/27.1/debian/ci/keg/Dockerfile b/images/27.1/debian/ci/keg/Dockerfile index 175e0769..1d57bcfd 100644 --- a/images/27.1/debian/ci/keg/Dockerfile +++ b/images/27.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.1-ci +FROM ghcr.io/silex/emacs:27.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/27.2/alpine/ci/Dockerfile b/images/27.2/alpine/ci/Dockerfile index c647e96b..9c6a49cc 100644 --- a/images/27.2/alpine/ci/Dockerfile +++ b/images/27.2/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:27.2-alpine +FROM ghcr.io/silex/emacs:27.2-alpine RUN apk add --no-cache git make diff --git a/images/27.2/alpine/ci/cask/Dockerfile b/images/27.2/alpine/ci/cask/Dockerfile index 13167c85..c10d7996 100644 --- a/images/27.2/alpine/ci/cask/Dockerfile +++ b/images/27.2/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-alpine-ci +FROM ghcr.io/silex/emacs:27.2-alpine-ci RUN apk add --no-cache python3 diff --git a/images/27.2/alpine/ci/eask/Dockerfile b/images/27.2/alpine/ci/eask/Dockerfile index 43b56089..8340ecab 100644 --- a/images/27.2/alpine/ci/eask/Dockerfile +++ b/images/27.2/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-alpine-ci +FROM ghcr.io/silex/emacs:27.2-alpine-ci RUN apk add --no-cache unzip diff --git a/images/27.2/alpine/ci/eldev/Dockerfile b/images/27.2/alpine/ci/eldev/Dockerfile index 86cd87ec..636d2e42 100644 --- a/images/27.2/alpine/ci/eldev/Dockerfile +++ b/images/27.2/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-alpine-ci +FROM ghcr.io/silex/emacs:27.2-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/27.2/alpine/ci/keg/Dockerfile b/images/27.2/alpine/ci/keg/Dockerfile index a455d458..102b314d 100644 --- a/images/27.2/alpine/ci/keg/Dockerfile +++ b/images/27.2/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-alpine-ci +FROM ghcr.io/silex/emacs:27.2-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/27.2/debian/ci/Dockerfile b/images/27.2/debian/ci/Dockerfile index 73887f04..9679be3c 100644 --- a/images/27.2/debian/ci/Dockerfile +++ b/images/27.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2 +FROM ghcr.io/silex/emacs:27.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/27.2/debian/ci/cask/Dockerfile b/images/27.2/debian/ci/cask/Dockerfile index 6c9fddb7..ba1c0c0d 100644 --- a/images/27.2/debian/ci/cask/Dockerfile +++ b/images/27.2/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-ci +FROM ghcr.io/silex/emacs:27.2-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/27.2/debian/ci/eask/Dockerfile b/images/27.2/debian/ci/eask/Dockerfile index bd8d1225..688ccd81 100644 --- a/images/27.2/debian/ci/eask/Dockerfile +++ b/images/27.2/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-ci +FROM ghcr.io/silex/emacs:27.2-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/27.2/debian/ci/eldev/Dockerfile b/images/27.2/debian/ci/eldev/Dockerfile index 680d0b00..bf0f6be5 100644 --- a/images/27.2/debian/ci/eldev/Dockerfile +++ b/images/27.2/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-ci +FROM ghcr.io/silex/emacs:27.2-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/27.2/debian/ci/keg/Dockerfile b/images/27.2/debian/ci/keg/Dockerfile index 659f85d7..38740d9a 100644 --- a/images/27.2/debian/ci/keg/Dockerfile +++ b/images/27.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:27.2-ci +FROM ghcr.io/silex/emacs:27.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/28.1/alpine/ci/Dockerfile b/images/28.1/alpine/ci/Dockerfile index c8dcc18e..e593b00f 100644 --- a/images/28.1/alpine/ci/Dockerfile +++ b/images/28.1/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:28.1-alpine +FROM ghcr.io/silex/emacs:28.1-alpine RUN apk add --no-cache git make diff --git a/images/28.1/alpine/ci/cask/Dockerfile b/images/28.1/alpine/ci/cask/Dockerfile index 0e6d3778..c14b53e1 100644 --- a/images/28.1/alpine/ci/cask/Dockerfile +++ b/images/28.1/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-alpine-ci +FROM ghcr.io/silex/emacs:28.1-alpine-ci RUN apk add --no-cache python3 diff --git a/images/28.1/alpine/ci/eask/Dockerfile b/images/28.1/alpine/ci/eask/Dockerfile index 38528aa5..1bf357a0 100644 --- a/images/28.1/alpine/ci/eask/Dockerfile +++ b/images/28.1/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-alpine-ci +FROM ghcr.io/silex/emacs:28.1-alpine-ci RUN apk add --no-cache unzip diff --git a/images/28.1/alpine/ci/eldev/Dockerfile b/images/28.1/alpine/ci/eldev/Dockerfile index d7159d21..43b6c64e 100644 --- a/images/28.1/alpine/ci/eldev/Dockerfile +++ b/images/28.1/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-alpine-ci +FROM ghcr.io/silex/emacs:28.1-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/28.1/alpine/ci/keg/Dockerfile b/images/28.1/alpine/ci/keg/Dockerfile index 8a788c25..2b0ab393 100644 --- a/images/28.1/alpine/ci/keg/Dockerfile +++ b/images/28.1/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-alpine-ci +FROM ghcr.io/silex/emacs:28.1-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/28.1/debian/ci/Dockerfile b/images/28.1/debian/ci/Dockerfile index 82ef23fb..17033ae1 100644 --- a/images/28.1/debian/ci/Dockerfile +++ b/images/28.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1 +FROM ghcr.io/silex/emacs:28.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/28.1/debian/ci/cask/Dockerfile b/images/28.1/debian/ci/cask/Dockerfile index bcdce003..8db26bff 100644 --- a/images/28.1/debian/ci/cask/Dockerfile +++ b/images/28.1/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-ci +FROM ghcr.io/silex/emacs:28.1-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/28.1/debian/ci/eask/Dockerfile b/images/28.1/debian/ci/eask/Dockerfile index d74ed577..4e228585 100644 --- a/images/28.1/debian/ci/eask/Dockerfile +++ b/images/28.1/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-ci +FROM ghcr.io/silex/emacs:28.1-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/28.1/debian/ci/eldev/Dockerfile b/images/28.1/debian/ci/eldev/Dockerfile index 9715c3e5..8acff9f2 100644 --- a/images/28.1/debian/ci/eldev/Dockerfile +++ b/images/28.1/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-ci +FROM ghcr.io/silex/emacs:28.1-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/28.1/debian/ci/keg/Dockerfile b/images/28.1/debian/ci/keg/Dockerfile index 16a54d57..5b14a8f1 100644 --- a/images/28.1/debian/ci/keg/Dockerfile +++ b/images/28.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.1-ci +FROM ghcr.io/silex/emacs:28.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/28.2/alpine/ci/Dockerfile b/images/28.2/alpine/ci/Dockerfile index 32d56ea6..25ec4756 100644 --- a/images/28.2/alpine/ci/Dockerfile +++ b/images/28.2/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:28.2-alpine +FROM ghcr.io/silex/emacs:28.2-alpine RUN apk add --no-cache git make diff --git a/images/28.2/alpine/ci/cask/Dockerfile b/images/28.2/alpine/ci/cask/Dockerfile index 54495dc7..5ccccc71 100644 --- a/images/28.2/alpine/ci/cask/Dockerfile +++ b/images/28.2/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-alpine-ci +FROM ghcr.io/silex/emacs:28.2-alpine-ci RUN apk add --no-cache python3 diff --git a/images/28.2/alpine/ci/eask/Dockerfile b/images/28.2/alpine/ci/eask/Dockerfile index cd122be5..0b16a929 100644 --- a/images/28.2/alpine/ci/eask/Dockerfile +++ b/images/28.2/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-alpine-ci +FROM ghcr.io/silex/emacs:28.2-alpine-ci RUN apk add --no-cache unzip diff --git a/images/28.2/alpine/ci/eldev/Dockerfile b/images/28.2/alpine/ci/eldev/Dockerfile index 4327bcbd..a0d43bb2 100644 --- a/images/28.2/alpine/ci/eldev/Dockerfile +++ b/images/28.2/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-alpine-ci +FROM ghcr.io/silex/emacs:28.2-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/28.2/alpine/ci/keg/Dockerfile b/images/28.2/alpine/ci/keg/Dockerfile index 543816a9..84d4053d 100644 --- a/images/28.2/alpine/ci/keg/Dockerfile +++ b/images/28.2/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-alpine-ci +FROM ghcr.io/silex/emacs:28.2-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/28.2/debian/ci/Dockerfile b/images/28.2/debian/ci/Dockerfile index 388c0e47..f8b3a894 100644 --- a/images/28.2/debian/ci/Dockerfile +++ b/images/28.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2 +FROM ghcr.io/silex/emacs:28.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/28.2/debian/ci/cask/Dockerfile b/images/28.2/debian/ci/cask/Dockerfile index 8045ee10..9febd22c 100644 --- a/images/28.2/debian/ci/cask/Dockerfile +++ b/images/28.2/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-ci +FROM ghcr.io/silex/emacs:28.2-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/28.2/debian/ci/eask/Dockerfile b/images/28.2/debian/ci/eask/Dockerfile index 07a20995..4528725a 100644 --- a/images/28.2/debian/ci/eask/Dockerfile +++ b/images/28.2/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-ci +FROM ghcr.io/silex/emacs:28.2-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/28.2/debian/ci/eldev/Dockerfile b/images/28.2/debian/ci/eldev/Dockerfile index 79416ae6..a0b24cc5 100644 --- a/images/28.2/debian/ci/eldev/Dockerfile +++ b/images/28.2/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-ci +FROM ghcr.io/silex/emacs:28.2-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/28.2/debian/ci/keg/Dockerfile b/images/28.2/debian/ci/keg/Dockerfile index 01b3e00f..1d720731 100644 --- a/images/28.2/debian/ci/keg/Dockerfile +++ b/images/28.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:28.2-ci +FROM ghcr.io/silex/emacs:28.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.1/alpine/ci/Dockerfile b/images/29.1/alpine/ci/Dockerfile index f88b1723..426d2e2c 100644 --- a/images/29.1/alpine/ci/Dockerfile +++ b/images/29.1/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:29.1-alpine +FROM ghcr.io/silex/emacs:29.1-alpine RUN apk add --no-cache git make diff --git a/images/29.1/alpine/ci/cask/Dockerfile b/images/29.1/alpine/ci/cask/Dockerfile index 1f84dd82..700c9180 100644 --- a/images/29.1/alpine/ci/cask/Dockerfile +++ b/images/29.1/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-alpine-ci +FROM ghcr.io/silex/emacs:29.1-alpine-ci RUN apk add --no-cache python3 diff --git a/images/29.1/alpine/ci/eask/Dockerfile b/images/29.1/alpine/ci/eask/Dockerfile index 36732710..0b6c76b4 100644 --- a/images/29.1/alpine/ci/eask/Dockerfile +++ b/images/29.1/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-alpine-ci +FROM ghcr.io/silex/emacs:29.1-alpine-ci RUN apk add --no-cache unzip diff --git a/images/29.1/alpine/ci/eldev/Dockerfile b/images/29.1/alpine/ci/eldev/Dockerfile index 815d1eb3..0ba9e322 100644 --- a/images/29.1/alpine/ci/eldev/Dockerfile +++ b/images/29.1/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-alpine-ci +FROM ghcr.io/silex/emacs:29.1-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.1/alpine/ci/keg/Dockerfile b/images/29.1/alpine/ci/keg/Dockerfile index e20f7fd6..46056fc1 100644 --- a/images/29.1/alpine/ci/keg/Dockerfile +++ b/images/29.1/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-alpine-ci +FROM ghcr.io/silex/emacs:29.1-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.1/debian/ci/Dockerfile b/images/29.1/debian/ci/Dockerfile index ea5687cb..62c34036 100644 --- a/images/29.1/debian/ci/Dockerfile +++ b/images/29.1/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1 +FROM ghcr.io/silex/emacs:29.1 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/29.1/debian/ci/cask/Dockerfile b/images/29.1/debian/ci/cask/Dockerfile index 32dbbe3e..1f417586 100644 --- a/images/29.1/debian/ci/cask/Dockerfile +++ b/images/29.1/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-ci +FROM ghcr.io/silex/emacs:29.1-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/29.1/debian/ci/eask/Dockerfile b/images/29.1/debian/ci/eask/Dockerfile index 97c5e632..bfb4b07a 100644 --- a/images/29.1/debian/ci/eask/Dockerfile +++ b/images/29.1/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-ci +FROM ghcr.io/silex/emacs:29.1-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/29.1/debian/ci/eldev/Dockerfile b/images/29.1/debian/ci/eldev/Dockerfile index 4cd0abf4..c9aad0a2 100644 --- a/images/29.1/debian/ci/eldev/Dockerfile +++ b/images/29.1/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-ci +FROM ghcr.io/silex/emacs:29.1-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.1/debian/ci/keg/Dockerfile b/images/29.1/debian/ci/keg/Dockerfile index 8a04b9a4..ae274f12 100644 --- a/images/29.1/debian/ci/keg/Dockerfile +++ b/images/29.1/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.1-ci +FROM ghcr.io/silex/emacs:29.1-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.2/alpine/ci/Dockerfile b/images/29.2/alpine/ci/Dockerfile index 8baec678..795d7e87 100644 --- a/images/29.2/alpine/ci/Dockerfile +++ b/images/29.2/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:29.2-alpine +FROM ghcr.io/silex/emacs:29.2-alpine RUN apk add --no-cache git make diff --git a/images/29.2/alpine/ci/cask/Dockerfile b/images/29.2/alpine/ci/cask/Dockerfile index 4cef60ea..3cf927b4 100644 --- a/images/29.2/alpine/ci/cask/Dockerfile +++ b/images/29.2/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-alpine-ci +FROM ghcr.io/silex/emacs:29.2-alpine-ci RUN apk add --no-cache python3 diff --git a/images/29.2/alpine/ci/eask/Dockerfile b/images/29.2/alpine/ci/eask/Dockerfile index 27fb6ade..0dd9972c 100644 --- a/images/29.2/alpine/ci/eask/Dockerfile +++ b/images/29.2/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-alpine-ci +FROM ghcr.io/silex/emacs:29.2-alpine-ci RUN apk add --no-cache unzip diff --git a/images/29.2/alpine/ci/eldev/Dockerfile b/images/29.2/alpine/ci/eldev/Dockerfile index c4ad0158..dd5da534 100644 --- a/images/29.2/alpine/ci/eldev/Dockerfile +++ b/images/29.2/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-alpine-ci +FROM ghcr.io/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" diff --git a/images/29.2/alpine/ci/keg/Dockerfile b/images/29.2/alpine/ci/keg/Dockerfile index e98031ec..d28f4146 100644 --- a/images/29.2/alpine/ci/keg/Dockerfile +++ b/images/29.2/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-alpine-ci +FROM ghcr.io/silex/emacs:29.2-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.2/debian/ci/Dockerfile b/images/29.2/debian/ci/Dockerfile index 75331096..0a899818 100644 --- a/images/29.2/debian/ci/Dockerfile +++ b/images/29.2/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2 +FROM ghcr.io/silex/emacs:29.2 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/29.2/debian/ci/cask/Dockerfile b/images/29.2/debian/ci/cask/Dockerfile index 0678a906..404a4c37 100644 --- a/images/29.2/debian/ci/cask/Dockerfile +++ b/images/29.2/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-ci +FROM ghcr.io/silex/emacs:29.2-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/29.2/debian/ci/eask/Dockerfile b/images/29.2/debian/ci/eask/Dockerfile index 1fb21846..46e7b442 100644 --- a/images/29.2/debian/ci/eask/Dockerfile +++ b/images/29.2/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-ci +FROM ghcr.io/silex/emacs:29.2-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/29.2/debian/ci/eldev/Dockerfile b/images/29.2/debian/ci/eldev/Dockerfile index f2f00f53..9b448faa 100644 --- a/images/29.2/debian/ci/eldev/Dockerfile +++ b/images/29.2/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-ci +FROM ghcr.io/silex/emacs:29.2-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.2/debian/ci/keg/Dockerfile b/images/29.2/debian/ci/keg/Dockerfile index ee01d330..eaddfd1d 100644 --- a/images/29.2/debian/ci/keg/Dockerfile +++ b/images/29.2/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.2-ci +FROM ghcr.io/silex/emacs:29.2-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.3/alpine/ci/Dockerfile b/images/29.3/alpine/ci/Dockerfile index 688aa105..5dbeb2bf 100644 --- a/images/29.3/alpine/ci/Dockerfile +++ b/images/29.3/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:29.3-alpine +FROM ghcr.io/silex/emacs:29.3-alpine RUN apk add --no-cache git make diff --git a/images/29.3/alpine/ci/cask/Dockerfile b/images/29.3/alpine/ci/cask/Dockerfile index ac3fe29b..b6c617ca 100644 --- a/images/29.3/alpine/ci/cask/Dockerfile +++ b/images/29.3/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-alpine-ci +FROM ghcr.io/silex/emacs:29.3-alpine-ci RUN apk add --no-cache python3 diff --git a/images/29.3/alpine/ci/eask/Dockerfile b/images/29.3/alpine/ci/eask/Dockerfile index 2d1f9941..2823faba 100644 --- a/images/29.3/alpine/ci/eask/Dockerfile +++ b/images/29.3/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-alpine-ci +FROM ghcr.io/silex/emacs:29.3-alpine-ci RUN apk add --no-cache unzip diff --git a/images/29.3/alpine/ci/eldev/Dockerfile b/images/29.3/alpine/ci/eldev/Dockerfile index e38f79f4..490134d9 100644 --- a/images/29.3/alpine/ci/eldev/Dockerfile +++ b/images/29.3/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-alpine-ci +FROM ghcr.io/silex/emacs:29.3-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.3/alpine/ci/keg/Dockerfile b/images/29.3/alpine/ci/keg/Dockerfile index 48e1238f..78debf7e 100644 --- a/images/29.3/alpine/ci/keg/Dockerfile +++ b/images/29.3/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-alpine-ci +FROM ghcr.io/silex/emacs:29.3-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.3/debian/ci/Dockerfile b/images/29.3/debian/ci/Dockerfile index aa0ba289..09d22b7f 100644 --- a/images/29.3/debian/ci/Dockerfile +++ b/images/29.3/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3 +FROM ghcr.io/silex/emacs:29.3 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/29.3/debian/ci/cask/Dockerfile b/images/29.3/debian/ci/cask/Dockerfile index 8f0e9858..0fae49c3 100644 --- a/images/29.3/debian/ci/cask/Dockerfile +++ b/images/29.3/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-ci +FROM ghcr.io/silex/emacs:29.3-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/29.3/debian/ci/eask/Dockerfile b/images/29.3/debian/ci/eask/Dockerfile index a81d6f2f..d25854e8 100644 --- a/images/29.3/debian/ci/eask/Dockerfile +++ b/images/29.3/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-ci +FROM ghcr.io/silex/emacs:29.3-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/29.3/debian/ci/eldev/Dockerfile b/images/29.3/debian/ci/eldev/Dockerfile index d1ed9b66..624ba4f2 100644 --- a/images/29.3/debian/ci/eldev/Dockerfile +++ b/images/29.3/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-ci +FROM ghcr.io/silex/emacs:29.3-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.3/debian/ci/keg/Dockerfile b/images/29.3/debian/ci/keg/Dockerfile index 0e7da6fc..083eac77 100644 --- a/images/29.3/debian/ci/keg/Dockerfile +++ b/images/29.3/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.3-ci +FROM ghcr.io/silex/emacs:29.3-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.4/alpine/ci/Dockerfile b/images/29.4/alpine/ci/Dockerfile index 724957f2..a7bd4076 100644 --- a/images/29.4/alpine/ci/Dockerfile +++ b/images/29.4/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:29.4-alpine +FROM ghcr.io/silex/emacs:29.4-alpine RUN apk add --no-cache git make diff --git a/images/29.4/alpine/ci/cask/Dockerfile b/images/29.4/alpine/ci/cask/Dockerfile index 889e47a9..bf652b8a 100644 --- a/images/29.4/alpine/ci/cask/Dockerfile +++ b/images/29.4/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-alpine-ci +FROM ghcr.io/silex/emacs:29.4-alpine-ci RUN apk add --no-cache python3 diff --git a/images/29.4/alpine/ci/eask/Dockerfile b/images/29.4/alpine/ci/eask/Dockerfile index d7982905..1593c4ad 100644 --- a/images/29.4/alpine/ci/eask/Dockerfile +++ b/images/29.4/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-alpine-ci +FROM ghcr.io/silex/emacs:29.4-alpine-ci RUN apk add --no-cache unzip diff --git a/images/29.4/alpine/ci/eldev/Dockerfile b/images/29.4/alpine/ci/eldev/Dockerfile index c90b1105..73ea670f 100644 --- a/images/29.4/alpine/ci/eldev/Dockerfile +++ b/images/29.4/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-alpine-ci +FROM ghcr.io/silex/emacs:29.4-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.4/alpine/ci/keg/Dockerfile b/images/29.4/alpine/ci/keg/Dockerfile index 5f818928..29847260 100644 --- a/images/29.4/alpine/ci/keg/Dockerfile +++ b/images/29.4/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-alpine-ci +FROM ghcr.io/silex/emacs:29.4-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/29.4/debian/ci/Dockerfile b/images/29.4/debian/ci/Dockerfile index 487d21a0..19a320f9 100644 --- a/images/29.4/debian/ci/Dockerfile +++ b/images/29.4/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4 +FROM ghcr.io/silex/emacs:29.4 RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/29.4/debian/ci/cask/Dockerfile b/images/29.4/debian/ci/cask/Dockerfile index f0753f10..849e2c5a 100644 --- a/images/29.4/debian/ci/cask/Dockerfile +++ b/images/29.4/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-ci +FROM ghcr.io/silex/emacs:29.4-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/29.4/debian/ci/eask/Dockerfile b/images/29.4/debian/ci/eask/Dockerfile index fe2aaae4..5cf349d9 100644 --- a/images/29.4/debian/ci/eask/Dockerfile +++ b/images/29.4/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-ci +FROM ghcr.io/silex/emacs:29.4-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/29.4/debian/ci/eldev/Dockerfile b/images/29.4/debian/ci/eldev/Dockerfile index 1118b7a4..42fe9038 100644 --- a/images/29.4/debian/ci/eldev/Dockerfile +++ b/images/29.4/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-ci +FROM ghcr.io/silex/emacs:29.4-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/29.4/debian/ci/keg/Dockerfile b/images/29.4/debian/ci/keg/Dockerfile index d82e18c1..2aac5e9f 100644 --- a/images/29.4/debian/ci/keg/Dockerfile +++ b/images/29.4/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:29.4-ci +FROM ghcr.io/silex/emacs:29.4-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/master/alpine/ci/Dockerfile b/images/master/alpine/ci/Dockerfile index c1a7f888..b3649416 100644 --- a/images/master/alpine/ci/Dockerfile +++ b/images/master/alpine/ci/Dockerfile @@ -1,3 +1,3 @@ -FROM silex/emacs:master-alpine +FROM ghcr.io/silex/emacs:master-alpine RUN apk add --no-cache git make diff --git a/images/master/alpine/ci/cask/Dockerfile b/images/master/alpine/ci/cask/Dockerfile index 07bab95a..91ea9dfb 100644 --- a/images/master/alpine/ci/cask/Dockerfile +++ b/images/master/alpine/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-alpine-ci +FROM ghcr.io/silex/emacs:master-alpine-ci RUN apk add --no-cache python3 diff --git a/images/master/alpine/ci/eask/Dockerfile b/images/master/alpine/ci/eask/Dockerfile index fc8b5583..b8001804 100644 --- a/images/master/alpine/ci/eask/Dockerfile +++ b/images/master/alpine/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-alpine-ci +FROM ghcr.io/silex/emacs:master-alpine-ci RUN apk add --no-cache unzip diff --git a/images/master/alpine/ci/eldev/Dockerfile b/images/master/alpine/ci/eldev/Dockerfile index 25ed603c..5efc9a7c 100644 --- a/images/master/alpine/ci/eldev/Dockerfile +++ b/images/master/alpine/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-alpine-ci +FROM ghcr.io/silex/emacs:master-alpine-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/master/alpine/ci/keg/Dockerfile b/images/master/alpine/ci/keg/Dockerfile index 34272bce..b4f06c08 100644 --- a/images/master/alpine/ci/keg/Dockerfile +++ b/images/master/alpine/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-alpine-ci +FROM ghcr.io/silex/emacs:master-alpine-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH" diff --git a/images/master/debian/ci/Dockerfile b/images/master/debian/ci/Dockerfile index 6fbd8479..f5839b4f 100644 --- a/images/master/debian/ci/Dockerfile +++ b/images/master/debian/ci/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master +FROM ghcr.io/silex/emacs:master RUN apt-get update && \ apt-get install -y git make && \ diff --git a/images/master/debian/ci/cask/Dockerfile b/images/master/debian/ci/cask/Dockerfile index 89cda3fc..6dfa68cc 100644 --- a/images/master/debian/ci/cask/Dockerfile +++ b/images/master/debian/ci/cask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-ci +FROM ghcr.io/silex/emacs:master-ci RUN apt-get update && \ apt-get install -y python3 && \ diff --git a/images/master/debian/ci/eask/Dockerfile b/images/master/debian/ci/eask/Dockerfile index e228c92b..f79a1595 100644 --- a/images/master/debian/ci/eask/Dockerfile +++ b/images/master/debian/ci/eask/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-ci +FROM ghcr.io/silex/emacs:master-ci RUN apt-get update && \ apt-get install -y unzip && \ diff --git a/images/master/debian/ci/eldev/Dockerfile b/images/master/debian/ci/eldev/Dockerfile index f92f28fb..35b2c015 100644 --- a/images/master/debian/ci/eldev/Dockerfile +++ b/images/master/debian/ci/eldev/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-ci +FROM ghcr.io/silex/emacs:master-ci RUN curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/eldev | sh ENV PATH="/root/.local/bin:$PATH" diff --git a/images/master/debian/ci/keg/Dockerfile b/images/master/debian/ci/keg/Dockerfile index 9d863783..f6465462 100644 --- a/images/master/debian/ci/keg/Dockerfile +++ b/images/master/debian/ci/keg/Dockerfile @@ -1,4 +1,4 @@ -FROM silex/emacs:master-ci +FROM ghcr.io/silex/emacs:master-ci RUN git clone https://github.com/conao3/keg.el.git /root/.keg ENV PATH="/root/.keg/bin:$PATH"