This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/nsd/Dockerfile

16 lines
402 B
Docker
Raw Normal View History

2019-03-29 09:14:25 +00:00
FROM alpine
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
RUN apk add --no-cache alpine-baselayout bash busybox nsd openssh openrc
VOLUME /etc/nsd
EXPOSE 53
EXPOSE 53/udp
RUN rc-update add nsd default && rc-update add sshd default
CMD ["/sbin/openrc", "default"]
LABEL org.mobyproject.config='{"binds": ["/etc/resolv.conf:/etc/resolv.conf"], "capabilities": ["CAP_NET_BIND_SERVICE"]}'