mirror of
https://github.com/BluemediaGER/homelab.git
synced 2024-11-14 16:35:29 +01:00
7 lines
134 B
Docker
7 lines
134 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add dhcp
|
||
|
|
||
|
RUN touch /var/lib/dhcp/dhcpd.leases
|
||
|
|
||
|
CMD [ "dhcpd", "-d", "-f", "-cf", "/etc/dhcp/dhcpd.conf" ]
|