FROM node:14-buster-slim ADD package.json package-lock.json /app/ WORKDIR /app RUN npm i ADD app.js /app/ USER nobody CMD node app.js