chore: update base image to Node.js 20-alpine in Dockerfile

This commit is contained in:
Rémi 2025-01-06 00:37:53 +01:00
parent bf94e84c65
commit 1ff5126e98

View File

@ -1,6 +1,6 @@
# syntax=docker.io/docker/dockerfile:1
FROM node:18-alpine AS base
FROM node:20-alpine AS base
# Install dependencies only when needed
FROM base AS deps