Running Node with dumb-init inside a Docker Container
I am trying to use dumb-init in my docker container but the container OS cannot find the executable. My file is FROM node:16 AS builder RUN apt update RUN apt install dumb-init WORKDIR /app COPY package.json . RUN yarn install…