diff --git a/Dockerfile b/Dockerfile index 1e55b79..70e5274 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # Use the latest udx-worker as the base image -FROM usabilitydynamics/udx-worker:0.34.0 +FROM usabilitydynamics/udx-worker:0.35.0 # Add metadata labels -LABEL version="0.22.0" +LABEL version="0.23.0" # Set build arguments for Node.js version and application port -ARG NODE_VERSION=22.17.1 +ARG NODE_VERSION=22.21.1 ARG APP_PORT=8080 # Set application-specific environment variables @@ -24,7 +24,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.6.4-1ubuntu1 && \ + apt-get install -y --no-install-recommends xz-utils=5.8.1-1build2 && \ rm -rf /var/lib/apt/lists/* # Install Node.js