From 23c518d3291b4a06781706d8c8514db1f56a2702 Mon Sep 17 00:00:00 2001 From: Robin Candau Date: Sun, 2 Oct 2022 18:45:32 +0200 Subject: [PATCH] Corrected the 'crystal-keyring' and 'crystal-mirrorlist' URLs according to the new packages GH org --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad755f0..346c74b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,10 @@ RUN mkdir /tmp/crystal-keyring RUN chown temp-user /tmp/crystal-keyring USER temp-user -RUN git clone https://github.com/crystal-linux/pkgbuild.crystal-keyring.git /tmp/crystal-keyring +RUN git clone https://github.com/crystal-linux-packages/crystal-keyring.git /tmp/crystal-keyring RUN pushd /tmp/crystal-keyring && makepkg --noconfirm -sp /tmp/crystal-keyring/PKGBUILD && popd -RUN git clone https://github.com/crystal-linux/pkgbuild.crystal-mirrorlist.git /tmp/crystal-mirrorlist +RUN git clone https://github.com/crystal-linux-packages/crystal-mirrorlist.git /tmp/crystal-mirrorlist RUN pushd /tmp/crystal-mirrorlist && makepkg --noconfirm -sp /tmp/crystal-mirrorlist/PKGBUILD && popd USER root