godns/Dockerfile
Tyler 991ae3ecb5
All checks were successful
continuous-integration/drone/push Build is passing
Resolve error, only trigger build on master
2020-01-25 12:51:20 -05:00

14 lines
274 B
Docker

FROM alpine
MAINTAINER Tyler Stuyfzand <tyler@tystuyfzand.com>
EXPOSE 53
RUN apk --no-cache add tini
ENTRYPOINT ["/sbin/tini", "-g", "--"]
CMD ["godns"]
COPY etc/godns.example.conf /etc/godns.conf
COPY /build/godns /usr/local/bin/godns
RUN chmod +x /usr/local/bin/godns