mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-21 06:03:41 +00:00
These embedded checksums can help against accidental image corruption, for example due to bad cache data, broken mirror servers or bad media. They are not digital signatures and do *not* help against bad actors manipulating the .iso image. Images can be checked manually with the "checkisomd5" command. This is done automatically when using the Fedora media writer or the upcoming systemrescue-usbwriter.
6 lines
267 B
Text
6 lines
267 B
Text
FROM archlinux:latest
|
|
RUN mkdir -p /workspace
|
|
COPY tmpfiles/pacman.conf /etc/pacman.conf
|
|
RUN pacman -Syyu --noconfirm archiso binutils edk2-shell grub hugo isomd5sum mtools && rm -rf /var/cache/pacman/pkg/*
|
|
CMD ["setarch","x86_64","/usr/bin/bash"]
|
|
WORKDIR /workspace
|