From cdf12448c4300f4600b6e96f976baa1d991ad263 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 13:05:32 +0000 Subject: [PATCH] chore(deps): bump node in /api.planx.uk Bumps node from 18.16.1-alpine to 22.0.0-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- api.planx.uk/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.planx.uk/Dockerfile b/api.planx.uk/Dockerfile index 4c283debef..b0a70cc75d 100644 --- a/api.planx.uk/Dockerfile +++ b/api.planx.uk/Dockerfile @@ -1,6 +1,6 @@ ## BASE ## # 18.16.1 = LTS -FROM node:18.16.1-alpine as base +FROM node:22.0.0-alpine as base # Setup Git - required for fetching git dependencies (planx-core) RUN apk add --no-cache git @@ -21,7 +21,7 @@ RUN pnpm install --recursive --prefer-offline RUN pnpm build RUN pnpm prune --production -FROM node:18.16.1-alpine as production +FROM node:22.0.0-alpine as production WORKDIR /api ## PRODUCTION ##