Fix Dockerfile to use npm install (no lock file in repo)
Some checks failed
Build and Push Docker Image / build (push) Failing after 6m2s
Some checks failed
Build and Push Docker Image / build (push) Failing after 6m2s
This commit is contained in:
parent
41fad79af7
commit
d2a2d543d3
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue