godns/docker/Dockerfile.arm

16 lines
322 B
Docker

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