feat(ci): add SonarQube Cloud (#1)
Reviewed-on: public/docker-dnsmasq#1
This commit is contained in:
@ -1,13 +1,12 @@
|
||||
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
|
||||
|
Reference in New Issue
Block a user