Some checks are pending
continuous-integration/drone/pr Build is running
Signed-off-by: Christian Richter <crichter@owncloud.com>
9 lines
268 B
Docker
9 lines
268 B
Docker
FROM debian:latest
|
|
LABEL maintainer="dragonchaser <autobuilds@datenschmutz.space>"
|
|
EXPOSE 5335/udp
|
|
RUN apt-get update \
|
|
&& apt-get -y install unbound netcat
|
|
COPY unbound/config.conf /etc/unbound/unbound.conf.d/
|
|
COPY unbound/entrypoint.sh /
|
|
ENTRYPOINT /entrypoint.sh
|