From 90c7ecf92fd9d96e9ddf88f662fc083908d25bb6 Mon Sep 17 00:00:00 2001 From: Lily Cohen Date: Wed, 7 Jun 2023 11:34:23 -0600 Subject: [PATCH] update to node 20 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8671911e4..2227d57a33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Install dev and compilation dependencies, build files -FROM node:19-alpine as build +FROM node:20-alpine as build WORKDIR /calckey # Install compilation dependencies @@ -32,7 +32,7 @@ RUN pnpm i --prod --frozen-lockfile ## Runtime container -FROM node:19-alpine +FROM node:20-alpine WORKDIR /calckey # Install runtime dependencies