godns/docker/Dockerfile.arm

16 lines
322 B
Docker
Raw Normal View History

2018-07-01 03:09:52 +00:00
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"]
2018-07-03 05:35:20 +00:00
COPY etc/godns.conf /etc/godns.conf
2018-07-01 03:28:04 +00:00
COPY godns-arm /usr/local/bin/godns
2018-07-01 03:09:52 +00:00
RUN chmod +x /usr/local/bin/godns