From 06c76e59b53260d10317e8902626873551cac9d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Thu, 5 Jun 2025 10:25:12 +0200 Subject: [PATCH] build: docker uses npm ci (#244) --- docker/Dockerfile | 2 +- docker/deploy.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index d559da5..f8f4670 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -23,7 +23,7 @@ RUN if [ $(uname -m) = "aarch64" ] ; then \ WORKDIR ${APP_HOME} COPY --chown=${APP_USER}:${APP_USER} . . -RUN npm install +RUN npm ci # Create diff --git a/docker/deploy.Dockerfile b/docker/deploy.Dockerfile index c171f04..2e3d0ed 100644 --- a/docker/deploy.Dockerfile +++ b/docker/deploy.Dockerfile @@ -23,7 +23,7 @@ RUN if [ $(uname -m) = "aarch64" ] ; then \ WORKDIR ${APP_HOME} COPY --chown=${APP_USER}:${APP_USER} . . -RUN npm install +RUN npm ci # Create