From 717bc012e714059a9a9c565e6e23bcac66343749 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 15 Oct 2023 01:36:26 +0100 Subject: [PATCH] asked john again, might work --- gitea-runner/NodeLatestDockerfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gitea-runner/NodeLatestDockerfile b/gitea-runner/NodeLatestDockerfile index b957260..0c5dbe2 100644 --- a/gitea-runner/NodeLatestDockerfile +++ b/gitea-runner/NodeLatestDockerfile @@ -8,5 +8,11 @@ COPY --from=node /usr/local/lib /usr/local/lib COPY --from=node /usr/local/include /usr/local/include COPY --from=node /usr/local/bin /usr/local/bin -# Install packages -RUN apk add --no-cache curl wget git bash \ No newline at end of file +# Install the necessary dependencies for Node.js +RUN apk add --no-cache libstdc++ libgcc + +# Install other dependencies +RUN apk install --no-cache curl wget git bash + +# Print the version of NodeJS we're running +RUN node --version \ No newline at end of file