From f8c0884f2aeef213e6d66e68e910d8c511b3f0ea Mon Sep 17 00:00:00 2001 From: Daniel Salzman Date: Wed, 17 Sep 2025 07:17:41 +0200 Subject: [PATCH] Dockerfile: fix protocol in EXPOSE instruction should be lowercase --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8aa1b29bb..2bdabd4e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,10 +101,10 @@ COPY --from=builder /knot-src/distro/common/cz.nic.knotd.conf /usr/share/dbus-1/ RUN mkdir -p /run/dbus # Expose port -EXPOSE 53/UDP -EXPOSE 53/TCP -EXPOSE 853/UDP -EXPOSE 853/TCP +EXPOSE 53/udp +EXPOSE 53/tcp +EXPOSE 853/udp +EXPOSE 853/tcp # Prepare shared directories VOLUME /config