Files
docs/.devcontainer/Dockerfile
Christian König 938d62425f Fix PATH
Signed-off-by: Christian König <ckoenig@posteo.de>
2024-02-23 21:02:24 +00:00

12 lines
328 B
Docker

FROM node:21-alpine3.19
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"