From 72f6b15bcf2a976f6d6d678fc2f829ec5b353f85 Mon Sep 17 00:00:00 2001 From: komodo Date: Mon, 23 Jun 2025 16:29:26 -0500 Subject: [PATCH] [Komodo] hqadmin: Commit Dockerfile: update ./Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30b362b..def8b99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL maintainer="Dylan Derr" ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ - apt-get install -y --no-install-recommends tftpd-hpa && \ + apt-get install -y --no-install-recommends busybox tftpd-hpa && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* @@ -16,4 +16,5 @@ EXPOSE 69/udp ENV TFTP_PORT=69 ENV TFTP_DIR=/srv/tftp -CMD bash -c "/usr/sbin/in.tftpd --ipv4 --foreground --verbosity 4 --address 0.0.0.0:69 --secure --create /srv/tftp" \ No newline at end of file +CMD bash -c "busybox syslogd -n -O /dev/stdout & \ + /usr/sbin/in.tftpd --ipv4 --foreground --verbosity 4 --address 0.0.0.0:${TFTP_PORT} --secure --create ${TFTP_DIR}" \ No newline at end of file