Files
docs/.devcontainer/Dockerfile
XhmikosR 00968ede2e Update .devcontainer/Dockerfile
Co-authored-by: yubiuser <github@yubiuser.dev>
Signed-off-by: XhmikosR <xhmikosr@gmail.com>
2025-03-04 07:04:06 +02:00

15 lines
292 B
Docker

FROM node:22-alpine3.21
RUN apk add --no-cache \
git \
nano \
openssh \
py3-pip
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"