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",