mirror of
https://github.com/wahyd4/s6-builder.git
synced 2026-08-09 04:46:46 +10:00
14 lines
276 B
Docker
14 lines
276 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 /
|
|
|
|
ENTRYPOINT ["/build.sh"]
|
|
|
|
VOLUME /dist
|