From fe061a46d67038e57cc18b61a86fa1b9d75512f5 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Thu, 11 Sep 2025 10:24:37 -0500 Subject: [PATCH] fix: remove dev dependencies from npm install in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7db77da..f0337ef 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 install --omit=dev && \ +RUN npm install && \ make less && make uglify # Production stage