All checks were successful
multi-semantic-release / multi-semantic-release (push) Successful in 13s
13 lines
312 B
Docker
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/*
|