16 lines
269 B
Plaintext
16 lines
269 B
Plaintext
FROM scratch
|
|
|
|
ADD bootstrap.tar.gz /
|
|
|
|
RUN ldconfig
|
|
|
|
RUN pacman-key --init && pacman-key --populate archlinux hyperbola
|
|
|
|
RUN pacman -Su --noconfirm --noprogressbar --quiet gzip awk
|
|
|
|
RUN pacman -Scc --noconfirm && paccache -r -k0
|
|
|
|
ENV LANG en_US.UTF-8
|
|
|
|
CMD ["/bin/bash"]
|