removed dnsmasq

main
Ricard Illa 2022-07-31 16:55:43 +02:00
parent c3c9b13a73
commit 4ff60951df
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
2 changed files with 0 additions and 28 deletions

View File

@ -1,9 +0,0 @@
FROM alpine:3.16
RUN apk --no-cache add dnsmasq
VOLUME /etc/dnsmasq
EXPOSE 53
CMD ["dnsmasq", "--no-daemon"]

View File

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