godns/Dockerfile

14 lines
274 B
Docker
Raw Normal View History

2019-06-02 20:52:51 +00:00
FROM alpine
2018-07-01 03:09:52 +00:00
MAINTAINER Tyler Stuyfzand <tyler@tystuyfzand.com>
EXPOSE 53
RUN apk --no-cache add tini
2018-08-05 08:48:26 +00:00
COPY etc/godns.example.conf /etc/godns.conf
COPY /build/godns /usr/local/bin/godns
2018-07-01 03:09:52 +00:00
RUN chmod +x /usr/local/bin/godns
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["godns"]