From 0112a8b24048e638d3d9a594f43df2cbe63458db Mon Sep 17 00:00:00 2001 From: Brent Vollebregt Date: Fri, 4 Oct 2024 18:51:06 +1300 Subject: [PATCH] Use npm ci in container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d5dc5ba..a85d2f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY . . # https://stackoverflow.com/a/72323758 RUN chown -R root:root . -RUN npm install && npm run build +RUN npm ci && npm run build FROM debian:bullseye LABEL fly_launch_runtime="nodejs"