dockerfiles/siverten/bind9/Dockerfile
Sivert V. Sæther 8c3769180d Add changes I've made manually on the build server
This also adds the xmr-stak cypto miner container image I created
That one is the first of potentially many images I won't push to the official Docker Hub registries, but insted to my own private registry
2022-06-19 16:21:23 +02:00

6 lines
170 B
Docker

FROM alpine:latest
RUN apk update && apk upgrade
RUN apk --no-cache add bind bind-dnssec-tools
EXPOSE 53
CMD ["named", "-c", "/etc/bind/named.conf", "-g", "-u", "named"]