1
0
mirror of https://github.com/pi-hole/docker-pi-hole.git synced 2024-06-25 08:47:48 +02:00

switch out the base image for debian with for now - fewer packages pre-installed than the pihole base image

This commit is contained in:
Adam Warner 2023-01-13 22:56:52 +00:00
parent 18609ec80e
commit 45f2d2dad6
No known key found for this signature in database

View File

@ -1,5 +1,17 @@
ARG PIHOLE_BASE
FROM "${PIHOLE_BASE:-ghcr.io/pi-hole/docker-pi-hole-base:bullseye-slim}"
# FROM "${PIHOLE_BASE:-ghcr.io/pi-hole/docker-pi-hole-base:bullseye-slim}"
FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
# Packages Specific to Docker:
procps \
xz-utils \
curl \
ca-certificates \
git \
sudo \
&& rm -rf /var/lib/apt/lists/*
ARG PIHOLE_DOCKER_TAG
RUN echo "${PIHOLE_DOCKER_TAG}" > /pihole.docker.tag