From a4dc8a775e61729aaf55b2b78cb9a8e268aaa564 Mon Sep 17 00:00:00 2001 From: Openverse Bot Date: Thu, 1 Dec 2022 00:27:03 +0000 Subject: [PATCH] Update Node.js to v19 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8b07cf334..880fcc897d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-alpine as builder +FROM node:19-alpine as builder # Install system packages needed to build on macOS RUN apk add --no-cache --virtual .gyp python3 make g++ \ @@ -37,7 +37,7 @@ RUN pnpm build:only # Nuxt app ################### -FROM node:16-alpine as app +FROM node:19-alpine as app # Install CURL for the production healthcheck RUN apk --no-cache add curl