# 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/*