Skip to content

Commit e3f8580

Browse files
authored
Merge pull request #32 from udx/CMP-64
Upgrade to udx-worker:0.20.0
2 parents 5dedeb0 + 2167c7b commit e3f8580

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
driver: docker-container
3636

3737
- name: Install GitVersion
38-
uses: gittools/actions/gitversion/setup@v3.1.11
38+
uses: gittools/actions/gitversion/setup@v3.2.1
3939
with:
4040
versionSpec: "6.0.0"
4141

@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Determine Version
4646
id: gitversion
47-
uses: gittools/actions/gitversion/execute@v3.1.11
47+
uses: gittools/actions/gitversion/execute@v3.2.1
4848
with:
4949
useConfigFile: true
5050
configFilePath: ci/git-version.yml

Dockerfile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Use the latest udx-worker as the base image
2-
FROM usabilitydynamics/udx-worker:0.18.0
2+
FROM usabilitydynamics/udx-worker:0.20.0
33

44
# Add metadata labels
5-
LABEL version="0.12.0"
5+
LABEL version="0.13.0"
66

77
# Set build arguments for Node.js version and application port
88
ARG NODE_VERSION=22.14.0
@@ -21,6 +21,12 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2121
# Set working directory for Node.js installation
2222
WORKDIR /tmp
2323

24+
# Install required packages for Node.js extraction
25+
RUN set -ex && \
26+
apt-get update && \
27+
apt-get install -y --no-install-recommends xz-utils=5.6.4-1ubuntu1 && \
28+
rm -rf /var/lib/apt/lists/*
29+
2430
# Install Node.js
2531
RUN set -ex && \
2632
# Detect architecture
@@ -45,6 +51,10 @@ RUN set -ex && \
4551
# Cleanup
4652
rm -rf /tmp/*
4753

54+
# Remove xz-utils as it's no longer needed
55+
RUN apt-get purge -y --auto-remove xz-utils && \
56+
rm -rf /var/lib/apt/lists/*
57+
4858
# Copy application files
4959
# Create application directory
5060
RUN mkdir -p "${APP_HOME}" && \

0 commit comments

Comments
 (0)