You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM debian:buster
|
|
RUN apt update && apt install -y xinetd tftpd-hpa busybox
|
|
COPY tftp.xinetd.conf /etc/xinetd.d/tftp
|
|
COPY http.xinetd.conf /etc/xinetd.d/http
|
|
RUN echo "http-boot 8014/tcp" >> /etc/services
|
|
CMD ["script", "-c", "/usr/sbin/xinetd -d"]
|
|
|