Why do you need to have node installed to run setup-node?
Some checks failed
Build Game / Build & push runner image (push) Failing after 3s
Build Game / export (push) Failing after 0s

This commit is contained in:
Benjamin Morgan 2025-10-20 18:53:18 -06:00
parent 380bb4e55a
commit 13d1ded709
2 changed files with 21 additions and 6 deletions

View file

@ -0,0 +1,11 @@
FROM barichello/godot-ci:4.5.1
# Install Node 24 from Alpine
RUN apt-get update && apt-get install -y curl \
&& curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
# Verify installations
RUN node --version