mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
f7982dfbe1
+rename centos->centos_8, centos7 -> centos_7 +update centos/fedora test script Signed-off-by: Adam Warner <me@adamwarner.co.uk>
16 lines
482 B
Docker
16 lines
482 B
Docker
FROM centos:8
|
|
|
|
ENV GITDIR /etc/.pihole
|
|
ENV SCRIPTDIR /opt/pihole
|
|
|
|
RUN mkdir -p $GITDIR $SCRIPTDIR /etc/pihole
|
|
ADD . $GITDIR
|
|
RUN cp $GITDIR/advanced/Scripts/*.sh $GITDIR/gravity.sh $GITDIR/pihole $GITDIR/automated\ install/*.sh $SCRIPTDIR/
|
|
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$SCRIPTDIR
|
|
|
|
RUN true && \
|
|
chmod +x $SCRIPTDIR/*
|
|
|
|
ENV PH_TEST true
|
|
|
|
#sed '/# Start the installer/Q' /opt/pihole/basic-install.sh > /opt/pihole/stub_basic-install.sh && \
|