From 5ee40d893b171748251fa2fb75242f334d96a7f9 Mon Sep 17 00:00:00 2001 From: Dmitry Smirnov Date: Mon, 9 Feb 2026 16:14:39 +0300 Subject: [PATCH] added nodejs to path --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b5723f1..d193b77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,15 @@ FROM usabilitydynamics/udx-worker:0.37.0 # Add metadata labels -LABEL version="0.25.0" +LABEL version="0.26.0" # Set build arguments for Node.js version and application port ARG NODE_VERSION=22.21.1 ARG APP_PORT=8080 +# Add Node.js to PATH +ENV PATH="/usr/local/node/bin:${PATH}" + # Set application-specific environment variables ENV APP_HOME="/usr/src/app" \ APP_PORT="${APP_PORT}"