From 5eaecdcefc67177dc0e0760b788becc82170e102 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Wed, 26 Apr 2023 08:51:06 +0200 Subject: [PATCH] Update to node 18 in prod Dockerfile --- .../compose/production/django/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile b/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile index 33222c524..4c8695a57 100644 --- a/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile +++ b/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile @@ -1,5 +1,5 @@ {% if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] -%} -FROM node:16-bullseye-slim as client-builder +FROM node:18-bullseye-slim as client-builder ARG APP_HOME=/app WORKDIR ${APP_HOME}