1 2 3 4 5 6 7 8 9 10FROM node:18.16.0-slim WORKDIR /usr/src/app COPY index.js package.json /usr/src/app/ RUN apt update && apt install bash && npm config set script-shell=bash CMD ["npm", "run", "start"] # CMD ["node", "index.js"]
1 2 3 4 5 6 7 8 9 10
FROM node:18.16.0-slim WORKDIR /usr/src/app COPY index.js package.json /usr/src/app/ RUN apt update && apt install bash && npm config set script-shell=bash CMD ["npm", "run", "start"] # CMD ["node", "index.js"]