[Komodo] hqadmin: Commit Dockerfile: update ./Dockerfile

This commit is contained in:
komodo 2025-06-23 16:29:26 -05:00
parent 4d83627de9
commit 72f6b15bcf

View file

@ -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"
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}"