You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2023/10/27 12:57:42 UTC

(camel-website) branch main updated: fix:fixed version of nodejs

This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 56f6da6c fix:fixed version of nodejs
56f6da6c is described below

commit 56f6da6c769ce2b64c85cea1e1d22b260cb51a29
Author: Zoran Regvart <zo...@regvart.com>
AuthorDate: Fri Oct 27 14:56:45 2023 +0200

    fix:fixed version of nodejs
    
    The LTS version of Nodejs was upgraded to v20, we need v18 for the
    website build.
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index b9dfbde4..54bda11b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM node:lts-buster
+FROM node:18-buster
 
 RUN set -ex \
   && apt-get update \