Commit 48538b77 authored by nimrod's avatar nimrod
Browse files

- Initial commit (dump from previous project).

parents
Loading
Loading
Loading
Loading

Dockerfile

0 → 100644
+7 −0
Original line number Diff line number Diff line
FROM debian:jessie
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
    apt-get install -y unbound unbound-host dnsutils dma bsd-mailx
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash", "--login"]

entrypoint.sh

0 → 100755
+5 −0
Original line number Diff line number Diff line
#!/bin/sh
set -eu
service unbound start
echo 'nameserver 127.0.0.1' > /etc/resolv.conf
exec $@