From b22a9bb11ab180f75edaa24ad150acf3ae084060 Mon Sep 17 00:00:00 2001 From: Voxin Muyli Date: Thu, 28 Sep 2023 14:08:53 +0200 Subject: [PATCH] Update Dockerfile added npm --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5aeeb6eef52..b0ea9cfb008 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11 ENV PYTHONUNBUFFERED 1 RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - -RUN apt-get install -y nodejs +RUN apt-get install -y nodejs npm COPY ./requirements.txt /requirements.txt RUN pip3 install -r /requirements.txt