Change Dockerfile to use npm install instead of npm ci to match CI workflow

This commit is contained in:
Pas 2025-12-27 22:09:29 -07:00
parent 3cd214d58a
commit 7af2e9e526

View file

@ -4,7 +4,7 @@ WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
ARG DATABASE_URL
ARG DATABASE_URL_DOCKER