From 4ff60951df15ae19f6ca88e7dab70d354345b3df Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Sun, 31 Jul 2022 16:55:43 +0200 Subject: [PATCH] removed dnsmasq --- dnsmasq/Dockerfile | 9 --------- dnsmasq/Makefile | 19 ------------------- 2 files changed, 28 deletions(-) delete mode 100644 dnsmasq/Dockerfile delete mode 100644 dnsmasq/Makefile diff --git a/dnsmasq/Dockerfile b/dnsmasq/Dockerfile deleted file mode 100644 index 963c1a6..0000000 --- a/dnsmasq/Dockerfile +++ /dev/null @@ -1,9 +0,0 @@ -FROM alpine:3.16 - -RUN apk --no-cache add dnsmasq - -VOLUME /etc/dnsmasq - -EXPOSE 53 - -CMD ["dnsmasq", "--no-daemon"] diff --git a/dnsmasq/Makefile b/dnsmasq/Makefile deleted file mode 100644 index a3c71be..0000000 --- a/dnsmasq/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -IMG_NAME=dnsmasq -REGISTRY=registry.monotremata.xyz -IMG=$(REGISTRY)/$(IMG_NAME) -PLATFORMS=linux/amd64 - -.PHONY: build push buildx - -build: Dockerfile - docker build -t $(IMG) . - -push: build - docker image push $(IMG) - -buildx: Dockerfile - docker buildx build \ - --platform $(PLATFORMS) \ - --tag $(IMG) \ - --push \ - .