From 73ac5339f405a10154939fc7b323553ff2c3d423 Mon Sep 17 00:00:00 2001 From: Ravinou Date: Sun, 8 Dec 2024 11:40:51 +0100 Subject: [PATCH] =?UTF-8?q?config:=20=F0=9F=94=A7=20upgrade=20Docker=20bas?= =?UTF-8?q?e=20image=20to=20Node.js=20LTS=2022?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c59bf81..11e651f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG UID=1001 ARG GID=1001 -FROM node:20-bookworm-slim as base +FROM node:22-bookworm-slim as base # build stage FROM base AS deps @@ -10,7 +10,7 @@ WORKDIR /app COPY package.json package-lock.json ./ -RUN npm ci --only=production +RUN npm ci --omit=dev FROM base AS builder