Update pdns versions by updating base images

This commit is contained in:
Peter Schiffer 2023-12-17 02:36:45 +01:00
parent 8f9ea37a85
commit a6c9b76736
No known key found for this signature in database
GPG key ID: F2A18AC34A008397
4 changed files with 10 additions and 10 deletions

View file

@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:39
RUN dnf -y --setopt=install_weak_deps=False install \
pdns-recursor \
@ -13,7 +13,7 @@ RUN mkdir -p /etc/pdns-recursor/api.d \
&& mkdir -p /run/pdns-recursor \
&& chown -R pdns-recursor: /run/pdns-recursor
ENV VERSION=4.8 \
ENV VERSION=4.9 \
PDNS_setuid=pdns-recursor \
PDNS_setgid=pdns-recursor \
PDNS_daemon=no

View file

@ -1,18 +1,18 @@
FROM alpine:3.17.3
FROM alpine:3.19.0
RUN apk add --no-cache \
pdns-recursor \
py3-pip \
python3
RUN pip3 install --no-cache-dir envtpl
RUN pip3 install --no-cache-dir --break-system-packages envtpl
RUN mkdir -p /etc/pdns/api.d \
&& chown -R recursor: /etc/pdns/api.d \
&& mkdir -p /var/run/pdns-recursor \
&& chown -R recursor: /var/run/pdns-recursor
ENV VERSION=4.7 \
ENV VERSION=4.9 \
PDNS_setuid=recursor \
PDNS_setgid=recursor \
PDNS_daemon=no

View file

@ -1,4 +1,4 @@
FROM fedora:38
FROM fedora:39
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
&& dnf -y --setopt=install_weak_deps=False install \
@ -12,7 +12,7 @@ RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.7 \
ENV VERSION=4.8 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \

View file

@ -1,4 +1,4 @@
FROM alpine:3.17.3
FROM alpine:3.19.0
RUN apk add --no-cache \
mariadb-client \
@ -8,9 +8,9 @@ RUN apk add --no-cache \
py3-pip \
python3
RUN pip3 install --no-cache-dir envtpl
RUN pip3 install --no-cache-dir --break-system-packages envtpl
ENV VERSION=4.7 \
ENV VERSION=4.8 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \