feat: Add node

This commit is contained in:
Ivan Pepelyaev 2023-09-26 16:59:41 +03:00 committed by Mikhail
parent 1b99927c7c
commit a41ce72f13

View File

@ -0,0 +1,12 @@
FROM {{ registry }}{{ organization }}/buildpack-deps:{{ branch }}
MAINTAINER alt-cloud
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
{{ install_pakages(
"node",
"npm",
"yarn"
) }}