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

This commit is contained in:
komodo 2025-06-23 14:23:37 -05:00
parent 1fd0d44074
commit 9392c78bf6

View file

@ -1,3 +1,16 @@
## Add your dockerfile here
FROM debian:stable-slim
RUN echo 'Hello Komodo'
FROM ubuntu:25.04
LABEL maintainer="Dylan Derr"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends tftpd-hpa && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN mkdir -p /srv/tftp && \
chmod -R 777 /srv/tftp
EXPOSE 69/udp
CMD ["/usr/sbin/in.tftpd", "--ipv4", "--foreground", "--verbose", "--address", "0.0.0.0:69", "--secure", "--create", "-vvv", "/srv/tftp"]