8 lines
213 B
Docker
8 lines
213 B
Docker
FROM docker.io/library/node:22
|
|
|
|
USER root
|
|
RUN apt-get --no-cache update && apt-get --no-cache install -y \
|
|
git git-lfs \
|
|
RUN curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=10.0.0 sh -
|
|
|
|
USER node
|