Fix Dockerfile to use npm install (no lock file in repo)
Some checks failed
Build and Push Docker Image / build (push) Failing after 6m2s

This commit is contained in:
myrmidex 2026-03-19 01:35:19 +01:00
parent 41fad79af7
commit d2a2d543d3

View file

@ -43,7 +43,7 @@ COPY . .
RUN composer install --no-dev --no-interaction --optimize-autoloader
# Install ALL Node dependencies (including dev for building)
RUN npm ci
RUN npm install
# Build frontend assets
RUN npm run build