mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-10 18:57:56 +01:00
55 lines
1.7 KiB
Docker
55 lines
1.7 KiB
Docker
FROM rockylinux/rockylinux:9-ubi
|
|
|
|
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
|
&& echo 'install_weak_deps=False' >> /etc/dnf/dnf.conf \
|
|
&& echo 'tsflags=nodocs' >> /etc/dnf/dnf.conf \
|
|
&& echo 'assumeyes=True' >> /etc/dnf/dnf.conf \
|
|
&& curl -fsSL -o /etc/yum.repos.d/yarn.repo https://dl.yarnpkg.com/rpm/yarn.repo \
|
|
&& dnf module enable nodejs:20 \
|
|
&& dnf install epel-release \
|
|
&& dnf --refresh upgrade \
|
|
&& dnf install \
|
|
npm \
|
|
python3-cffi \
|
|
python3-ldap \
|
|
python3-lxml \
|
|
python3-mysqlclient \
|
|
python3-pip \
|
|
python3-pyyaml \
|
|
python3-saml \
|
|
python3-xmlsec \
|
|
uwsgi \
|
|
yarn \
|
|
https://github.com/kha7iq/subvars/releases/download/v0.1.5/subvars_${arch}.rpm \
|
|
&& dnf clean all
|
|
|
|
RUN mkdir -p /opt/powerdns-admin \
|
|
&& curl -fsSL https://github.com/PowerDNS-Admin/PowerDNS-Admin/archive/refs/tags/v0.4.1.tar.gz \
|
|
| tar -xzf - -C /opt/powerdns-admin --strip 1 \
|
|
&& sed -i \
|
|
-e '/cffi/d' \
|
|
-e '/lxml/d' \
|
|
-e '/mysqlclient/d' \
|
|
-e '/psycopg2/d' \
|
|
-e '/python-ldap/d' \
|
|
-e '/python3-saml/d' \
|
|
-e '/PyYAML/d' \
|
|
/opt/powerdns-admin/requirements.txt \
|
|
&& chown -R root: /opt/powerdns-admin
|
|
|
|
WORKDIR /opt/powerdns-admin
|
|
|
|
RUN pip3 install -r requirements.txt --no-cache-dir
|
|
|
|
ENV FLASK_APP=/opt/powerdns-admin/powerdnsadmin/__init__.py
|
|
|
|
COPY config.py.tpl /
|
|
COPY run.py .
|
|
|
|
RUN subvars --prefix 'PDNS_ADMIN_' < /config.py.tpl > /opt/powerdns-admin/config.py \
|
|
&& sed -i '/SQLALCHEMY_DATABASE_URI/d' /opt/powerdns-admin/config.py
|
|
|
|
RUN yarn install --pure-lockfile --production \
|
|
&& yarn cache clean \
|
|
&& flask assets build \
|
|
&& chown -R uwsgi: /opt/powerdns-admin/powerdnsadmin/static/.webassets-cache
|