Skip to content

Commit 9d1d93b

Browse files
authored
Merge pull request #65 from udx/path-env-fix
Added nodejs to path
2 parents f1f1564 + 5ee40d8 commit 9d1d93b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
FROM usabilitydynamics/udx-worker:0.37.0
33

44
# Add metadata labels
5-
LABEL version="0.25.0"
5+
LABEL version="0.26.0"
66

77
# Set build arguments for Node.js version and application port
88
ARG NODE_VERSION=22.21.1
99
ARG APP_PORT=8080
1010

11+
# Add Node.js to PATH
12+
ENV PATH="/usr/local/node/bin:${PATH}"
13+
1114
# Set application-specific environment variables
1215
ENV APP_HOME="/usr/src/app" \
1316
APP_PORT="${APP_PORT}"

0 commit comments

Comments
 (0)