2023-01-15 19:43:50 +01:00
|
|
|
FROM python:3.11-alpine
|
2023-01-14 20:46:50 +01:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN apk add bind git
|
|
|
|
COPY bind/named.conf.local /etc/bind/named.conf.local
|
|
|
|
COPY bind/zones/ /var/lib/bind/pri/
|
|
|
|
RUN chown named -R /var/lib/bind/pri/
|
|
|
|
|
|
|
|
CMD /app/scripts/docker/test.sh
|