mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2025-01-18 19:11:14 +01:00
chore: update pdns-recursor to 5.1.x
Some checks are pending
Docker Image CI / build-recursor-latest (push) Waiting to run
Docker Image CI / build-recursor-alpine (push) Waiting to run
Docker Image CI / build-pdns-mysql-latest (push) Waiting to run
Docker Image CI / build-pdns-mysql-alpine (push) Waiting to run
Docker Image CI / build-pdns-pgsql-latest (push) Waiting to run
Docker Image CI / build-pdns-pgsql-alpine (push) Waiting to run
Docker Image CI / build-pdns-admin (push) Waiting to run
Some checks are pending
Docker Image CI / build-recursor-latest (push) Waiting to run
Docker Image CI / build-recursor-alpine (push) Waiting to run
Docker Image CI / build-pdns-mysql-latest (push) Waiting to run
Docker Image CI / build-pdns-mysql-alpine (push) Waiting to run
Docker Image CI / build-pdns-pgsql-latest (push) Waiting to run
Docker Image CI / build-pdns-pgsql-alpine (push) Waiting to run
Docker Image CI / build-pdns-admin (push) Waiting to run
Alpine => 5.1.3 Fedora => 5.1.2
This commit is contained in:
parent
643f44b9f9
commit
fa5c8075ed
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM fedora:40
|
FROM fedora:41
|
||||||
|
|
||||||
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
||||||
&& echo 'install_weak_deps=False' >> /etc/dnf/dnf.conf \
|
&& echo 'install_weak_deps=False' >> /etc/dnf/dnf.conf \
|
||||||
|
@ -7,7 +7,7 @@ RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
||||||
&& dnf --refresh upgrade \
|
&& dnf --refresh upgrade \
|
||||||
&& dnf install \
|
&& dnf install \
|
||||||
pdns-recursor \
|
pdns-recursor \
|
||||||
https://github.com/kha7iq/subvars/releases/download/v0.1.5/subvars_${arch}.rpm \
|
https://github.com/TektonOps/subvars/releases/download/v0.1.5/subvars_${arch}.rpm \
|
||||||
&& dnf clean all
|
&& dnf clean all
|
||||||
|
|
||||||
RUN mkdir -p /etc/pdns-recursor/api.d /run/pdns-recursor \
|
RUN mkdir -p /etc/pdns-recursor/api.d /run/pdns-recursor \
|
||||||
|
@ -15,7 +15,7 @@ RUN mkdir -p /etc/pdns-recursor/api.d /run/pdns-recursor \
|
||||||
|
|
||||||
COPY recursor.conf.tpl docker-entrypoint.sh /
|
COPY recursor.conf.tpl docker-entrypoint.sh /
|
||||||
|
|
||||||
ENV VERSION=5.0 \
|
ENV VERSION=5.1 \
|
||||||
PDNS_setuid=pdns-recursor \
|
PDNS_setuid=pdns-recursor \
|
||||||
PDNS_setgid=pdns-recursor \
|
PDNS_setgid=pdns-recursor \
|
||||||
PDNS_daemon=no \
|
PDNS_daemon=no \
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
FROM alpine:3.20.0
|
FROM alpine:3.21
|
||||||
|
|
||||||
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
||||||
&& apk update \
|
&& apk update \
|
||||||
&& apk upgrade \
|
&& apk upgrade \
|
||||||
&& apk add pdns-recursor \
|
&& apk add pdns-recursor \
|
||||||
&& wget -O subvars.apk https://github.com/kha7iq/subvars/releases/download/v0.1.5/subvars_${arch}.apk \
|
&& wget -O subvars.apk https://github.com/TektonOps/subvars/releases/download/v0.1.5/subvars_${arch}.apk \
|
||||||
&& apk add --allow-untrusted subvars.apk \
|
&& apk add --allow-untrusted subvars.apk \
|
||||||
&& rm -rf subvars.apk /var/cache/apk/*
|
&& rm -rf subvars.apk /var/cache/apk/*
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ RUN mkdir -p /etc/pdns/api.d /var/run/pdns-recursor \
|
||||||
|
|
||||||
COPY recursor.conf.tpl docker-entrypoint.sh /
|
COPY recursor.conf.tpl docker-entrypoint.sh /
|
||||||
|
|
||||||
ENV VERSION=5.0 \
|
ENV VERSION=5.1 \
|
||||||
PDNS_setuid=recursor \
|
PDNS_setuid=recursor \
|
||||||
PDNS_setgid=recursor \
|
PDNS_setgid=recursor \
|
||||||
PDNS_daemon=no \
|
PDNS_daemon=no \
|
||||||
|
|
Loading…
Reference in a new issue