15 lines
444 B
Docker
15 lines
444 B
Docker
FROM registry.verdnatura.es/debian:12.9-slim
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
curl \
|
|
ca-certificates \
|
|
gnupg2 \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
&& apt-get install -y --no-install-recommends nodejs \
|
|
&& npm install -g corepack@0.31.0 \
|
|
&& corepack enable pnpm \
|
|
&& rm -rf /var/lib/apt/lists/*
|