mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-27 08:00:36 +07:00
c2744838ab
No submodule and string replace script, j2 templates only
12 lines
162 B
Docker
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" ]
|