From 687768d860ecb41f9d3095556eca38305ed50d8f Mon Sep 17 00:00:00 2001
From: Rodrigo <freakrho@gmail.com>
Date: Wed, 11 Jun 2025 21:42:34 -0300
Subject: [PATCH] =?UTF-8?q?Dockerfile:=20Descargar=20=C3=BAltima=20versi?=
 =?UTF-8?q?=C3=B3n=20de=20node?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Dockerfile | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index a957a97..55c29fc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,8 +12,11 @@ RUN apt-get update && apt-get install -y \
     libonig-dev \
     libxml2-dev \
     zip \
-    unzip \
-    npm
+    unzip
+
+# Install node
+RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
+    apt-get install -y nodejs
 
 # Clear cache
 RUN apt-get clean && rm -rf /var/lib/apt/lists/*