1
0
Fork 0
images/node-mixinet/Dockerfile
Sergio Talens-Oliag 78adac8d17
All checks were successful
multi-semantic-release / multi-semantic-release (push) Successful in 13s
Initial commit.
2025-03-14 17:10:22 +01:00

13 lines
312 B
Docker

# Image used to run actions on forgejo.mixinet.net that need nodejs
# We base this image on the alpine-mixinet image
FROM forgejo.mixinet.net/oci/alpine-mixinet:1.0.0
# Update dist & install nodejs & npm
RUN apk update &&\
apk upgrade &&\
apk add \
nodejs \
npm \
&&\
rm -rf /var/cache/apk/*