From 472aca04a2d5351cd764a903726f3e11450bf50a Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 17 Jul 2024 13:54:42 +0100 Subject: [PATCH] Fix Docker tooling for building native components (#1779) --- dockerbuild/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerbuild/Dockerfile b/dockerbuild/Dockerfile index 8c2d3db..d44dc7f 100644 --- a/dockerbuild/Dockerfile +++ b/dockerbuild/Dockerfile @@ -18,7 +18,9 @@ RUN ln -s /usr/bin/python3 /usr/bin/python & ln -s /usr/bin/pip3 /usr/bin/pip ENV DEBUG_COLORS true ENV FORCE_COLOR true -ENV NODE_VERSION 18.19.0 +WORKDIR /project + +ENV NODE_VERSION 20.15.1 ARG TARGETOS ARG TARGETARCH COPY setup.sh /setup.sh