mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-05 06:15:14 +00:00
7 lines
331 B
Text
7 lines
331 B
Text
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
|