khuedoan-homelab/metal/roles/pxe-server/files/dhcp/Dockerfile
Khue Doan c2744838ab New pxe server structure
No submodule and string replace script, j2 templates only
2021-02-12 12:37:29 +07:00

12 lines
162 B
Docker

FROM alpine:3
RUN apk add dhcp gettext
RUN touch /var/lib/dhcp/dhcpd.leases
COPY dhcpd.conf /etc/dhcp/dhcpd.conf
COPY start.sh /start.sh
CMD [ "/start.sh" ]