When installing dependencies, package managers like npm will automatically execute shell scripts distributed along with the source
code. Post-install scripts, for example, are a common way to execute malicious code at install time whenever a package is compromised.
There is a risk if you answered no to the question.
Execution of third-party scripts should be disabled if not strictly necessary for dependencies to work correctly. Doing this will reduce the attack surface and block a well-known supply chain attack vector.
FROM node:latest # Sensitive RUN npm install
FROM node:latest # Sensitive RUN yarn install
FROM node:latest RUN npm install --ignore-scripts
FROM node:latest RUN yarn install --ignore-scripts