15 lines
297 B
Docker
15 lines
297 B
Docker
FROM arm64v8/alpine
|
|
|
|
COPY tmp/qemu-aarch64-static /usr/bin/qemu-aarch64-static
|
|
|
|
MAINTAINER Tyler Stuyfzand <tyler@tystuyfzand.com>
|
|
|
|
EXPOSE 53
|
|
|
|
RUN apk --no-cache add tini
|
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
|
CMD ["godns"]
|
|
|
|
COPY /godns-arm64 /usr/local/bin/godns
|
|
RUN chmod +x /usr/local/bin/godns
|