mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-03-24 20:34:39 +01:00
8 lines
331 B
Plaintext
8 lines
331 B
Plaintext
FROM fdupoux/archlinux32
|
|
RUN mkdir -p /workspace
|
|
COPY tmpfiles/pacman.conf /etc/pacman.conf
|
|
RUN sed -i -e 's/^Architecture.*$/Architecture = i686/' /etc/pacman.conf
|
|
RUN pacman -Syyu --noconfirm archiso binutils edk2-shell grub hugo mtools && rm -rf /var/cache/pacman/pkg/*
|
|
CMD ["setarch","i686","/usr/bin/bash"]
|
|
WORKDIR /workspace
|