From 2a2cbd196d1fb0e550fc3b312e9242538633d718 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Mon, 1 Jan 2024 23:04:25 +0100 Subject: [PATCH] Add node --- .docker/nginx.Dockerfile | 2 +- .drone.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/nginx.Dockerfile b/.docker/nginx.Dockerfile index 0993d867..d6e58287 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:17.9.0-slim as node +FROM node:18.13.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 5dfd5cf6..69a4c075 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,7 +22,7 @@ steps: - while ! mysqladmin ping -h db -u db -pdb --silent; do sleep 1; done - name: node - image: node:17.9.0-slim + image: node:18.13.0-slim commands: - cd packages/adrema-plugin && npm ci && npm run build && cd ../../ && npm ci && npm run img && npm run prod && rm -R node_modules