Initial commit

This commit is contained in:
Oliver Traber 2022-05-12 23:15:51 +02:00
commit 50f2a54331
Signed by: Bluemedia
GPG key ID: C0674B105057136C
21 changed files with 276 additions and 0 deletions

View file

@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk add dhcp
RUN touch /var/lib/dhcp/dhcpd.leases
CMD [ "dhcpd", "-d", "-f", "-cf", "/etc/dhcp/dhcpd.conf" ]