Sivert V. Sæther
8c3769180d
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
6 lines
170 B
Docker
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"]
|