From eee0c64106a64d05e33affd8ec385c60c1c5eac0 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 18 Jul 2024 01:40:37 +0200 Subject: [PATCH] Install adrema-form dependencies in docker --- .docker/nginx.Dockerfile | 3 ++- .docker/php.Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.docker/nginx.Dockerfile b/.docker/nginx.Dockerfile index 7a44689a..69495efe 100644 --- a/.docker/nginx.Dockerfile +++ b/.docker/nginx.Dockerfile @@ -8,7 +8,8 @@ RUN php artisan horizon:publish FROM node:20.15.0-slim as node WORKDIR /app COPY . /app -RUN npm install && npm run prod && npm run img && rm -R node_modules +RUN cd packages/adrema-form && npm ci && npm run build && rm -R node_modules && cd ../../ +RUN npm ci && npm run prod && npm run img && rm -R node_modules FROM nginx:1.21.6-alpine as nginx WORKDIR /app diff --git a/.docker/php.Dockerfile b/.docker/php.Dockerfile index b58c3e5a..7ddcdb01 100644 --- a/.docker/php.Dockerfile +++ b/.docker/php.Dockerfile @@ -6,7 +6,8 @@ RUN composer install --ignore-platform-reqs --no-dev FROM node:20.15.0-slim as node WORKDIR /app COPY . /app -RUN npm install && npm run prod && npm run img && rm -R node_modules +RUN cd packages/adrema-form && npm ci && npm run build && rm -R node_modules && cd ../../ +RUN npm ci && npm run prod && npm run img && rm -R node_modules FROM zoomyboy/adrema-base:latest as php COPY --chown=www-data:www-data . /app