Why do you need to have node installed to run setup-node?
This commit is contained in:
parent
380bb4e55a
commit
13d1ded709
2 changed files with 21 additions and 6 deletions
11
.forgejo/runner/Dockerfile
Normal file
11
.forgejo/runner/Dockerfile
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue