mirror of
https://github.com/outbackdingo/dnsmasq.git
synced 2026-01-27 18:18:44 +00:00
Co-authored-by: dghubble-renovate[bot] <119624128+dghubble-renovate[bot]@users.noreply.github.com>
10 lines
370 B
Docker
10 lines
370 B
Docker
FROM docker.io/alpine:3.21.3
|
|
LABEL maintainer="Dalton Hubble <dghubble@gmail.com>"
|
|
LABEL org.opencontainers.image.title="dnsmasq",
|
|
LABEL org.opencontainers.image.source="https://github.com/poseidon/dnsmasq"
|
|
LABEL org.opencontainers.image.vendor="Poseidon Labs"
|
|
RUN apk -U add dnsmasq curl
|
|
COPY tftpboot /var/lib/tftpboot
|
|
EXPOSE 53 67 69
|
|
ENTRYPOINT ["/usr/sbin/dnsmasq"]
|