mirror of
https://github.com/pi-hole/docs.git
synced 2025-12-24 13:18:55 +00:00
16 lines
305 B
Docker
16 lines
305 B
Docker
FROM node:24-alpine3.22
|
|
|
|
RUN apk add --no-cache \
|
|
git \
|
|
nano \
|
|
openssh \
|
|
py3-pip \
|
|
tzdata
|
|
|
|
ENV USER node
|
|
USER ${USER}
|
|
|
|
# python packages (as mkdocs) are installed in the user's home directory
|
|
# but we need them to be accessible from ${PATH}
|
|
ENV PATH="${PATH}:/home/${USER}/.local/bin"
|