Files
docs/.devcontainer/Dockerfile
yubiuser 5a3696eef3 Update Readme
Signed-off-by: yubiuser <github@yubiuser.dev>
2026-02-14 16:07:22 +01:00

16 lines
307 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 zensical) are installed in the user's home directory
# but we need them to be accessible from ${PATH}
ENV PATH="${PATH}:/home/${USER}/.local/bin"