mirror of
https://github.com/wahyd4/s6-builder.git
synced 2026-08-19 17:55:59 +10:00
14 lines
284 B
Docker
14 lines
284 B
Docker
FROM base/archlinux
|
|
|
|
MAINTAINER kfei <kfei@kfei.net>
|
|
|
|
RUN pacman -Syy && \
|
|
pacman -S --noconfirm --quiet --needed base-devel curl libunistring && \
|
|
pacman -S --noconfirm --quiet --needed --asdeps git jshon expac
|
|
|
|
ADD build.sh /build.sh
|
|
|
|
ENTRYPOINT ["/build.sh"]
|
|
|
|
VOLUME /dist
|