diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index ed19b048..c83f968a 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -25,7 +25,7 @@ services: user: $USER bundler: - image: node:18-alpine + image: node:20-alpine restart: unless-stopped command: npm run watch working_dir: /app diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 280a314a..f815803a 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -3,7 +3,7 @@ # SPDX-License-Identifier: AGPL-3.0-or-later # Build the assets -FROM node:alpine AS assets +FROM node:20-alpine AS assets WORKDIR /app COPY package*.json /app