From 61a96fa453ea466999b4e2f7c02e0b6a6d72dc11 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 28 Dec 2023 01:20:01 -0500 Subject: [PATCH] fix: run npm ci --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0948e6d..3b2f6c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ COPY . . COPY entrypoint.sh / +RUN npm ci + # Command to run when the Docker container starts # It assumes the entrypoint is a script that handles the inputs and runs the desired commands ENTRYPOINT ["sh", "/entrypoint.sh"]