Latest jinja2 breaks envtpl

Resolves #70
This commit is contained in:
Peter Schiffer 2022-03-25 22:18:01 +01:00
parent 74e80a1c37
commit 72a9919cec
No known key found for this signature in database
GPG key ID: F2A18AC34A008397
4 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ RUN dnf -y --setopt=install_weak_deps=False install \
python3-setuptools \ python3-setuptools \
&& dnf clean all && dnf clean all
RUN pip3 install --no-cache-dir envtpl RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
RUN mkdir -p /etc/pdns-recursor/api.d \ RUN mkdir -p /etc/pdns-recursor/api.d \
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d \ && chown -R pdns-recursor: /etc/pdns-recursor/api.d \

View file

@ -5,7 +5,7 @@ RUN apk add --no-cache \
py3-pip \ py3-pip \
python3 python3
RUN pip3 install --no-cache-dir envtpl RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
RUN mkdir -p /etc/pdns/api.d \ RUN mkdir -p /etc/pdns/api.d \
&& chown -R recursor: /etc/pdns/api.d \ && chown -R recursor: /etc/pdns/api.d \

View file

@ -10,7 +10,7 @@ RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
python3-setuptools \ python3-setuptools \
&& dnf clean all && dnf clean all
RUN pip3 install --no-cache-dir envtpl RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
ENV VERSION=4.6 \ ENV VERSION=4.6 \
PDNS_guardian=yes \ PDNS_guardian=yes \

View file

@ -8,7 +8,7 @@ RUN apk add --no-cache \
py3-pip \ py3-pip \
python3 python3
RUN pip3 install --no-cache-dir envtpl RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
ENV VERSION=4.5 \ ENV VERSION=4.5 \
PDNS_guardian=yes \ PDNS_guardian=yes \