Metadata for the ArchiveTeam Docker Hub repositories
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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