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 \ - .