revert(_prev): remove chaotic

This commit is contained in:
Eshan Roy
2024-11-29 08:04:20 +05:30
parent 0bf1fb990c
commit fd80b2f1fa

View File

@@ -1,17 +1,12 @@
FROM archlinux:base-devel AS rootfs FROM archlinux:base-devel AS rootfs
# Install base utilities and dependencies
RUN pacman -Syu --noconfirm && \ RUN pacman -Syu --noconfirm && \
pacman -S --needed --noconfirm pacman-contrib git openssh sudo curl pacman -S --needed --noconfirm pacman-contrib git openssh sudo curl
# Copy a custom pacman.conf if needed
COPY pacman.conf /etc/pacman.conf COPY pacman.conf /etc/pacman.conf
RUN curl https://raw.githubusercontent.com/Snigdha-OS/snigdhaos-pkgbuilds/refs/heads/master/snigdhaos-mirrorlist/snigdhaos-mirrorlist -o /etc/pacman.d/snigdhaos-mirrorlist
# Add Snigdha OS mirrorlist
RUN curl -o /etc/pacman.d/snigdhaos-mirrorlist \
https://raw.githubusercontent.com/Snigdha-OS/snigdhaos-pkgbuilds/refs/heads/master/snigdhaos-mirrorlist/snigdhaos-mirrorlist
# Initialize pacman keyring, add Snigdha OS keyring, and clean up ## include to pacman own keyring to install signed packages
RUN pacman-key --init && \ RUN pacman-key --init && \
pacman-key --recv-keys E1415F19F21171F2 --keyserver keyserver.ubuntu.com && \ pacman-key --recv-keys E1415F19F21171F2 --keyserver keyserver.ubuntu.com && \
pacman-key --lsign-key E1415F19F21171F2 && \ pacman-key --lsign-key E1415F19F21171F2 && \
@@ -21,19 +16,7 @@ RUN pacman-key --init && \
rm -rf /var/lib/pacman/sync/* && \ rm -rf /var/lib/pacman/sync/* && \
find /var/cache/pacman/ -type f -delete find /var/cache/pacman/ -type f -delete
# Add Chaotic-AUR mirrorlist and keyring
RUN curl -o /etc/pacman.d/chaotic-mirrorlist \
https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist && \
pacman-key --recv-keys 3056513887B78AEB --keyserver keyserver.ubuntu.com && \
pacman-key --lsign-key 3056513887B78AEB && \
echo '[chaotic-aur]' >> /etc/pacman.conf && \
echo 'Include = /etc/pacman.d/chaotic-mirrorlist' >> /etc/pacman.conf && \
pacman -Sy --needed --noconfirm chaotic-keyring && \
pacman -Syu --noconfirm && \
rm -rf /var/lib/pacman/sync/* && \
find /var/cache/pacman/ -type f -delete
FROM scratch FROM scratch
LABEL org.opencontainers.image.description="Snigdha OS with Chaotic-AUR support - Arch-based distribution offering an easy installation, several customizations, and unique performance optimization." LABEL org.opencontainers.image.description="Snigdha OS - Arch-based distribution offering an easy installation, several customizations, and unique performance optimization."
COPY --from=rootfs / / COPY --from=rootfs / /
CMD ["/usr/bin/bash"] CMD ["/usr/bin/bash"]