From 1c7e8cd433b5533543d57b306305a2ee15c8bf03 Mon Sep 17 00:00:00 2001 From: exilvm Date: Wed, 14 Sep 2022 06:45:50 +0100 Subject: [PATCH] add Node.js/NPM support to prod container --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c4ae76..359a0fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,9 @@ FROM debian:stable RUN apt update && apt upgrade -y -RUN apt install sudo +RUN apt install sudo curl -y + +RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash && apt install nodejs -y COPY deps.sh /tmp