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.

Dockerfile 372B

12345678910111213
  1. FROM debian:stretch
  2. ADD https://raw.githubusercontent.com/robin-thoni/docker-utils/v1.3.0/setup.sh /tmp/docker-utils-setup.sh
  3. RUN sh /tmp/docker-utils-setup.sh
  4. ENTRYPOINT ["gcf-entrypoint"]
  5. RUN pkgs-install isc-dhcp-server
  6. COPY ./config /etc/salt/base/
  7. EXPOSE 80
  8. CMD ["dhcpd", "-4", "-f", "--no-pid", "-d", "-cf", "/etc/dhcp/dhcpd.conf", "-lf", "/data/dhcpd.leases"]