16 lines
239 B
Docker
16 lines
239 B
Docker
FROM scratch
|
|
|
|
ADD hyperbola-bootstrap-i686.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"]
|