1
0
Fork 0
images/node-mixinet/Dockerfile

14 lines
312 B
Text
Raw Normal View History

2025-03-11 17:49:38 +01:00
# 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/*