Skip to content

Commit 46aaf69

Browse files
committed
Pin worker image to explicit node version and use netcat-openbsd
As netcat is missing from the apt repository Signed-off-by: Alex J Lennon <[email protected]>
1 parent 3d394b4 commit 46aaf69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ copy package.json .
99
copy package-lock.json .
1010
run npm ci
1111
copy . .
12-
from node:lts-slim
12+
from node:${NODE_VERSION}
1313
workdir /app
1414
copy --from=build /app /app
15-
run apt-get update > /dev/null && apt-get install -y jq curl dnsutils netcat > /dev/null
15+
run apt-get update > /dev/null && apt-get install -y jq curl dnsutils netcat-openbsd > /dev/null
1616
copy scripts/docker/run.sh /run.sh
1717
cmd bash /run.sh

0 commit comments

Comments
 (0)