Files
netboot.xyz/Dockerfile-build
T
2021-02-25 20:17:56 -06:00

18 lines
319 B
Plaintext

FROM ghcr.io/netbootxyz/builder:latest as builder
# repo for build
COPY . /ansible
RUN \
echo "**** running ansible ****" && \
cd /ansible && \
ansible-playbook -i inventory site.yml
# runtime stage
FROM alpine:3.13
COPY --from=builder /var/www/html/ /mnt/
COPY docker-build-root/ /
ENTRYPOINT [ "/dumper.sh" ]