From 08286db225c85125f134184e1e3005d3f1f4be83 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Thu, 11 Sep 2025 10:22:20 -0500 Subject: [PATCH] fix: update npm command to install production dependencies only --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d743e5..7db77da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,7 @@ RUN git clone https://github.com/pa11y/pa11y-dashboard.git . && \ git checkout ${PA11Y_VERSION} # Install dependencies and build -RUN npm ci --only=production && \ +RUN npm install --omit=dev && \ make less && make uglify # Production stage