From a3c4014b2dd4c1612abb1636679c75ebc922951e Mon Sep 17 00:00:00 2001
From: UIS DevOps Renovate Bot <devops+renovatebot@uis.cam.ac.uk>
Date: Tue, 8 Oct 2024 15:32:34 +0000
Subject: [PATCH] chore(deps): update node.js to v20

---
 .gitlab-ci.yml | 2 +-
 Dockerfile     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0cb1193..178dbdb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ include:
 
 # run linting
 opinionated_lint:
-  image: node:18-alpine
+  image: node:20-alpine
   stage: test
   script:
     - npm ci --ignore-scripts
diff --git a/Dockerfile b/Dockerfile
index 515e0be..f93aaeb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # Base stage
-FROM node:18-bookworm-slim as base
+FROM node:20-bookworm-slim as base
 
 # Set the working directory
 WORKDIR /app
@@ -51,7 +51,7 @@ COPY . .
 RUN npm run build
 
 # Stage 2: Production environment
-FROM node:18-alpine as production
+FROM node:20-alpine as production
 
 # Set the working directory
 WORKDIR /app
-- 
GitLab