Marc van der Wal ec37d3b892 Premier jet fonctionnel et documenté
L’essentiel y est, y compris les instructions pour manipuler
l’infrastructure et comment suivre les scénarios.
2023-10-25 15:50:21 +02:00

22 lines
359 B
Docker

FROM alpine:latest
RUN apk add \
bash \
bind-tools \
execline \
nano \
nano-syntax \
nsd \
openssl \
s6-overlay \
unbound \
vim
COPY etc/unbound/unbound.conf /etc/unbound
COPY etc/nsd/nsd.conf /etc/nsd/nsd.conf
COPY zones /etc/nsd/zones
COPY etc/s6-overlay /etc/s6-overlay
ENTRYPOINT ["/init"]