diff --git a/.docker/nginx.Dockerfile b/.docker/nginx.Dockerfile index d6e58287..7a44689a 100644 --- a/.docker/nginx.Dockerfile +++ b/.docker/nginx.Dockerfile @@ -5,7 +5,7 @@ RUN composer install --ignore-platform-reqs --no-dev RUN php artisan telescope:publish RUN php artisan horizon:publish -FROM node:18.13.0-slim as node +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 diff --git a/.docker/php.Dockerfile b/.docker/php.Dockerfile index 0b0e7ec5..b58c3e5a 100644 --- a/.docker/php.Dockerfile +++ b/.docker/php.Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY . /app RUN composer install --ignore-platform-reqs --no-dev -FROM node:17.9.0-slim as node +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 diff --git a/.drone.yml b/.drone.yml index d07558f5..a664428e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -32,7 +32,7 @@ steps: - while ! curl --silent 'http://owncloudserver:8080/ocs/v1.php/cloud/capabilities?format=json' -u admin:admin | grep '"status":"ok"'; do sleep 1; done - name: node - image: node:18.13.0-slim + image: node:20.15.0-slim commands: - npm ci && cd packages/adrema-form && npm ci && npm run build && cd ../../ && npm run img && npm run prod && rm -R node_modules