mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-25 10:26:07 +07:00
8 lines
124 B
Docker
8 lines
124 B
Docker
FROM alpine:3
|
|
|
|
RUN apk add dhcp
|
|
|
|
RUN touch /var/lib/dhcp/dhcpd.leases
|
|
|
|
CMD [ "dhcpd", "-f", "-cf", "/etc/dhcp/dhcpd.conf" ]
|