Metadata for the ArchiveTeam Docker Hub repositories
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

7 rader
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"]