From 71b4e6a28661191789e354244c18c7cbd93c663c Mon Sep 17 00:00:00 2001 From: Deft Dawg Date: Fri, 22 Nov 2024 17:32:07 -0500 Subject: [PATCH] - Ask npm to install express --- webapp/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/Dockerfile b/webapp/Dockerfile index 9a3d7846..02c217c5 100644 --- a/webapp/Dockerfile +++ b/webapp/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /root/ COPY ./build ./build COPY package*.json ./ -RUN npm install --omit=dev +RUN npm install --omit=dev && npm install express COPY server.js ./ EXPOSE 3001