From 756c37b994ccfb6d74aceccf74bd558cc824415e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 18:49:38 +0000 Subject: [PATCH] chore(deps): update node.js to v22 --- Dockerfile | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f05ea6a..f899f93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # A temporary image that installs dependencies and # builds the production-ready front-end bundles. -FROM node:14.21.2-alpine as bundles +FROM node:22.12.0-alpine as bundles WORKDIR /usr/src/smee.io COPY package*.json ./ COPY webpack.config.js ./ @@ -13,7 +13,7 @@ RUN npm ci && npm run build && env NODE_ENV=production npm prune # -------------------------------------------------------------------------------- -FROM node:14.21.2-alpine +FROM node:22.12.0-alpine LABEL description="Smee.io" # Let's make our home diff --git a/package.json b/package.json index 322cceb..fa7d2ec 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "webpack-cli": "^3.3.11" }, "engines": { - "node": "12.x.x" + "node": "22.x" }, "jest": { "globalSetup": "./tests/global-setup.js",