Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ FROM usabilitydynamics/udx-worker:0.47.0
LABEL version="0.32.0"

# Set build arguments for Node.js, npm, and application port
ARG NODE_VERSION=24.18.0
ARG NPM_VERSION=12.0.1
ARG NODE_VERSION=24.18.1
ARG NPM_VERSION=12.0.2
ARG APP_PORT=8080

# Add Node.js to PATH
Expand All @@ -28,7 +28,7 @@ WORKDIR /tmp
# Install required packages for Node.js extraction
RUN set -ex && \
apt-get update && \
apt-get install -y --no-install-recommends xz-utils=5.8.1-1build2 && \
apt-get install -y --no-install-recommends xz-utils=5.8.1-1ubuntu0.1 && \
rm -rf /var/lib/apt/lists/*

# Install Node.js
Expand Down
Loading