This repository has been archived on 2022-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
docker-templates/pi-hole/Dockerfile

5 lines
108 B
Docker

FROM alpine:latest
RUN apk --no-cache add dhcp-helper
EXPOSE 67/tcp 67/udp
ENTRYPOINT ["dhcp-helper", "-n"]