v0.1 #1

Merged
phil merged 3 commits from phil-add-1 into main 2025-07-27 09:54:55 +00:00
Showing only changes of commit ef564bc71e - Show all commits

22
Dockerfile Normal file
View file

@ -0,0 +1,22 @@
FROM alpine:3.22.0
LABEL maintainer="Phil <phil@hackmi.ch>"
LABEL version="0.1"
LABEL description="Docker image for TFTP server using dnsmasq"
WORKDIR /
RUN apk add --no-cache \
bash \
dnsmasq
EXPOSE 69/udp
COPY start.sh init.sh /
RUN chmod +x start.sh init.sh
VOLUME ["/tftp"]
ENTRYPOINT ["./start.sh"]