FROM alpine:latest RUN apk add --no-cache unbound COPY unbound.conf /etc/unbound/unbound.conf WORKDIR /etc/unbound/ EXPOSE 53 EXPOSE 53/udp CMD ["unbound", "-c", "/etc/unbound/unbound.conf", "-d"]