From ef564bc71ea18603d1f53bb45354f058392d62c9 Mon Sep 17 00:00:00 2001 From: Phil Date: Sun, 27 Jul 2025 09:52:05 +0000 Subject: [PATCH] =?UTF-8?q?Dockerfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a98c564 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +FROM alpine:3.22.0 + +LABEL maintainer="Phil " +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"] \ No newline at end of file