7 lines
158 B
Docker
7 lines
158 B
Docker
FROM docker.io/gitea/act_runner:latest
|
|
|
|
# Install Node.js via apt
|
|
RUN apk add --no-cache nodejs npm
|
|
|
|
# Verify installation
|
|
RUN node --version && npm --version |