mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-07-30 06:20:11 +00:00
17 lines
321 B
Text
17 lines
321 B
Text
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:latest
|
|
|
|
COPY --from=builder /var/www/html/ /mnt/
|
|
COPY docker-build-root/ /
|
|
|
|
ENTRYPOINT [ "/dumper.sh" ]
|