From c2b60f3feaf139ac55ef68fef0a1c0073d21351f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 13:18:56 +0000 Subject: [PATCH] chore(deps): bump node in /api.planx.uk Bumps node from 18.16.1-alpine to 18.19.1-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-minor ... 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..a3d11a3196 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:18.19.1-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:18.19.1-alpine as production WORKDIR /api ## PRODUCTION ##