11 lines
291 B
Docker
11 lines
291 B
Docker
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
|
|
|