Skip to content
Snippets Groups Projects
Commit 48538b77 authored by nimrod's avatar nimrod
Browse files

- Initial commit (dump from previous project).

parents
Branches
No related tags found
No related merge requests found
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"]
#!/bin/sh
set -eu
service unbound start
echo 'nameserver 127.0.0.1' > /etc/resolv.conf
exec $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment