Rebase images

Resolves #50
This commit is contained in:
Peter Schiffer 2021-01-22 14:22:50 +01:00
parent f54f187870
commit 26ad6bfbe2
No known key found for this signature in database
GPG key ID: 6CCC5046E2B0B44B
6 changed files with 11 additions and 11 deletions

View file

@ -146,9 +146,6 @@
PDNS_webserver_allow_from: '172.5.0.0/16'
PDNS_version_string: 'anonymous'
PDNS_default_ttl: '1500'
PDNS_soa_minimum_ttl: '1200'
PDNS_default_soa_name: 'ns1.example.com'
PDNS_default_soa_mail: 'hostmaster.example.com'
PDNS_allow_axfr_ips: '{{ pdns_slave_ip }}'
PDNS_only_notify: '{{ pdns_slave_ip }}'
tags:

View file

@ -1,10 +1,11 @@
FROM fedora:32
FROM fedora:33
RUN curl -sSL -o /etc/yum.repos.d/yarn.repo https://dl.yarnpkg.com/rpm/yarn.repo \
&& dnf -y --setopt=install_weak_deps=False install \
python3-ldap \
python3-mysql \
python3-pip \
python3-setuptools \
python3-xmlsec \
uwsgi \
yarn \

View file

@ -1,8 +1,9 @@
FROM fedora:32
FROM fedora:33
RUN dnf -y --setopt=install_weak_deps=False install \
pdns-recursor \
python3-pip \
python3-setuptools \
&& dnf clean all
RUN pip3 install --no-cache-dir envtpl

View file

@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.13
RUN apk add --no-cache \
pdns-recursor \
@ -12,7 +12,7 @@ RUN mkdir -p /etc/pdns/api.d \
&& mkdir -p /var/run/pdns-recursor \
&& chown -R recursor: /var/run/pdns-recursor
ENV VERSION=4.3 \
ENV VERSION=4.4 \
PDNS_setuid=recursor \
PDNS_setgid=recursor \
PDNS_daemon=no

View file

@ -1,4 +1,4 @@
FROM fedora:32
FROM fedora:33
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
&& dnf -y --setopt=install_weak_deps=False install \
@ -7,11 +7,12 @@ RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
pdns \
pdns-backend-mysql \
python3-pip \
python3-setuptools \
&& dnf clean all
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.3 \
ENV VERSION=4.4 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \

View file

@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.13
RUN apk add --no-cache \
mariadb-client \
@ -10,7 +10,7 @@ RUN apk add --no-cache \
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.2 \
ENV VERSION=4.3 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \