JackBootTFTP/Dockerfile
Jack Hadrill 5c570232f4
All checks were successful
continuous-integration/drone/push Build is passing
Update 'Dockerfile'
2022-07-24 16:06:21 +00:00

14 lines
213 B
Docker

FROM alpine:3.16
RUN apk add --no-cache dnsmasq
RUN echo -e "\
port=0\n\
enable-tftp\n\
tftp-root=/tftp\
" > /etc/dnsmasq.conf
EXPOSE 69/udp
VOLUME [ "/tftp" ]
ENTRYPOINT [ "dnsmasq", "--no-daemon" ]
CMD [ "" ]