From 0048f396a7df95ba0b62dbed3c963081729bd63c Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Thu, 11 May 2023 16:00:53 -0700 Subject: [PATCH] Fix npm-dev Dockerfile add python installation --- frontend/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 188ef108..1b8e7119 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -5,6 +5,10 @@ RUN mkdir -p /usr/src/frontend # specifying the working dir inside the container WORKDIR /usr/src/frontend +RUN apt-get update && \ + apt-get install -y python3 \ + build-essential + # copy current workdir COPY package.json package.json COPY package-lock.json package-lock.json