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