2017-12-11 14:18:53 +01:00
|
|
|
FROM alpine:3.7
|
|
|
|
MAINTAINER "Peter Schiffer" <pschiffe@redhat.com>
|
|
|
|
|
2017-12-11 14:57:44 +01:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
curl \
|
|
|
|
py-pip \
|
|
|
|
uwsgi-python \
|
|
|
|
py-mysqldb \
|
|
|
|
py-pyldap \
|
|
|
|
py-cffi \
|
|
|
|
py-bcrypt \
|
|
|
|
mariadb-client
|
|
|
|
|
2017-12-11 14:18:53 +01:00
|
|
|
RUN mkdir -p /opt/powerdns-admin \
|
|
|
|
&& curl -sSL https://git.0x97.io/0x97/powerdns-admin/repository/master/archive.tar.gz \
|
|
|
|
| tar -xzC /opt/powerdns-admin --strip 1 \
|
|
|
|
&& sed -i '/MySQL-python/d' /opt/powerdns-admin/requirements.txt \
|
|
|
|
&& sed -i '/python-ldap/d' /opt/powerdns-admin/requirements.txt \
|
|
|
|
&& sed -i '/bcrypt/d' /opt/powerdns-admin/requirements.txt \
|
|
|
|
&& chown -R root: /opt/powerdns-admin \
|
|
|
|
&& chown -R uwsgi: /opt/powerdns-admin/upload
|
|
|
|
|
|
|
|
WORKDIR /opt/powerdns-admin
|
|
|
|
|
|
|
|
RUN pip install envtpl \
|
|
|
|
&& pip install -r requirements.txt \
|
|
|
|
&& rm -rf ~/.cache/*
|
|
|
|
|
|
|
|
ENV PDNS_ADMIN_LOGIN_TITLE="'PDNS'" \
|
|
|
|
PDNS_ADMIN_TIMEOUT=10 \
|
|
|
|
PDNS_ADMIN_LOG_LEVEL="'INFO'" \
|
|
|
|
PDNS_ADMIN_BASIC_ENABLED=True \
|
|
|
|
PDNS_ADMIN_SIGNUP_ENABLED=True \
|
|
|
|
PDNS_ADMIN_RECORDS_ALLOW_EDIT="['SOA', 'NS', 'A', 'AAAA', 'CNAME', 'MX', 'TXT', 'SRV']"
|
|
|
|
|
|
|
|
EXPOSE 9494
|
|
|
|
|
|
|
|
VOLUME [ "/opt/powerdns-admin/upload" ]
|
|
|
|
|
|
|
|
COPY pdns-admin.ini /etc/uwsgi/conf.d/
|
2017-12-11 14:57:44 +01:00
|
|
|
RUN chown uwsgi: /etc/uwsgi/conf.d/pdns-admin.ini \
|
|
|
|
&& ln -s /etc/uwsgi/uwsgi.ini /etc/uwsgi.ini
|
2017-12-11 14:18:53 +01:00
|
|
|
|
|
|
|
COPY config.py.tpl /
|
|
|
|
COPY docker-cmd.sh /
|
|
|
|
|
2017-12-11 14:57:44 +01:00
|
|
|
CMD [ "/docker-cmd.sh" ]
|