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

  1. FROM alpine:latest
  2. LABEL description="ISC DHCP Server on Alpine Linux"
  3. RUN apk --no-cache add dhcp
  4. ENTRYPOINT ["/usr/sbin/dhcpd", "-4", \
  5. "-d", \
  6. # "-cf", "/config/dhcpd.conf", \
  7. # "-lf", "/config/dhcpd.leases", \
  8. "-user", "dhcp", \
  9. "-group", "dhcp"]