DEV Community

Discussion on: Blog post: Getting to Know GitHub Actions with Markdownlint

Collapse
 
jonasbn profile image
Jonas Brømsø

Do note the Dockerfile pointing to node on alpine:

node:10.16.0-alpine

Might trigger some errors like:

Error: could not get uid/gid
[ 'nobody', 0 ]

Please see this StackOverflow post for more details.

I followed the advice changing base image to a Debian based on:

node:current-slim

This works like a charm