forked from 0k/0k-charms
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
374 B
12 lines
374 B
FROM alpine:latest
|
|
|
|
LABEL description="ISC DHCP Server on Alpine Linux"
|
|
|
|
RUN apk --no-cache add dhcp
|
|
|
|
ENTRYPOINT ["/usr/sbin/dhcpd", "-4", \
|
|
"-d", \
|
|
# "-cf", "/config/dhcpd.conf", \
|
|
# "-lf", "/config/dhcpd.leases", \
|
|
"-user", "dhcp", \
|
|
"-group", "dhcp"]
|