From e5c2ba33ef21ccb73d5c4ef4047cfa5faf00c408 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Thu, 3 Apr 2025 23:38:46 +0200 Subject: [PATCH] Fix order --- .docker/nginx.Dockerfile | 2 +- .docker/php.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/nginx.Dockerfile b/.docker/nginx.Dockerfile index 323eb6e9..281083b0 100644 --- a/.docker/nginx.Dockerfile +++ b/.docker/nginx.Dockerfile @@ -8,8 +8,8 @@ RUN php artisan horizon:publish FROM node:20.15.0-slim as node WORKDIR /app COPY . /app +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 -RUN cd packages/adrema-form && npm ci && npm run build && 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 7b67b9c3..b6d24931 100644 --- a/.docker/php.Dockerfile +++ b/.docker/php.Dockerfile @@ -6,8 +6,8 @@ RUN composer install --ignore-platform-reqs --no-dev FROM node:20.15.0-slim as node WORKDIR /app COPY . /app +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 -RUN cd packages/adrema-form && npm ci && npm run build && rm -R node_modules FROM zoomyboy/adrema-base:latest as php COPY --chown=www-data:www-data . /app