Metadata for the ArchiveTeam Docker Hub repositories
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.

7 lines
179 B

  1. FROM alpine:edge
  2. RUN apk upgrade --no-cache \
  3. && apk add --no-cache dnsmasq
  4. COPY dnsmasq.conf /etc/dnsmasq.conf
  5. STOPSIGNAL SIGKILL
  6. ENTRYPOINT ["dnsmasq", "-kC/etc/dnsmasq.conf"]