commit da81da5888cfe49451c83fd82a86f0cc587c536a Author: Wolfgang Hottgenroth Date: Fri Oct 24 18:05:41 2025 +0200 initial diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2cd3920 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM alpine:3.22.2 + +LABEL Maintainer="Wolfgang Hottgenroth " +LABEL ImageName="" + +RUN apk add --no-cache knot knot-utils bash git openssh-client-default + +VOLUME /etc/knot +VOLUME /var/lib/knot + +USER knot + +WORKDIR /var/lib/knot + +EXPOSE 8053 + +CMD [ "/usr/sbin/knotd" ] + +