constellation-server 1.7.0

Pluggable authoritative DNS server. Entries can be added & removed from an HTTP REST API.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rustlang/rust:nightly AS build

RUN cargo install constellation-server

FROM debian:stretch-slim

WORKDIR /usr/src/constellation

COPY --from=build /usr/local/cargo/bin/constellation /usr/local/bin/constellation

RUN apt-get update
RUN apt-get install -y libssl-dev

CMD [ "constellation", "-c", "/etc/constellation.cfg" ]

EXPOSE 53/udp 8080