16 lines
224 B
Plaintext
16 lines
224 B
Plaintext
FROM scratch
|
|
|
|
ADD bootstrap.tar.gz /
|
|
|
|
RUN ldconfig
|
|
|
|
RUN pacman-key --init && pacman-key --populate hyperbola
|
|
|
|
RUN pacman -Suu --noconfirm --noprogressbar
|
|
|
|
RUN pacman -Scc --noconfirm
|
|
|
|
ENV LANG en_US.UTF-8
|
|
|
|
CMD ["/bin/bash"]
|