feat: migrate to Gitea
Some checks failed
CI / validate_pr_title (pull_request) Failing after 0s
CI / ci (pull_request) Successful in 1m50s

This commit is contained in:
2025-01-15 22:32:35 +00:00
parent 07d47300c7
commit 4bc6a68cae
5 changed files with 76 additions and 5 deletions

View File

@@ -1,13 +1,12 @@
FROM alpine:3.20 AS build
FROM alpine:3.21 AS build
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://github.com/luketainton/docker-dnsmasq"
FROM build AS webproc
ENV WEBPROCVERSION 0.4.0
ENV WEBPROCURL https://github.com/jpillora/webproc/releases/download/v$WEBPROCVERSION/webproc_"$WEBPROCVERSION"_linux_amd64.gz
RUN apk add --no-cache curl
RUN curl -sL "$WEBPROCURL" | gzip -d - > /usr/local/bin/webproc
RUN chmod +x /usr/local/bin/webproc
RUN apk add --no-cache curl && \
curl -sL "$WEBPROCURL" | gzip -d - > /usr/local/bin/webproc && \
chmod +x /usr/local/bin/webproc
FROM build AS dnsmasq
RUN apk --no-cache add dnsmasq=2.90-r3