FROM node:16.17.0 WORKDIR /usr/src/app COPY package*.json ./ RUN npm install RUN npm ci --only=production COPY . ./ EXPOSE 3000 CMD [ "./bin/www" ]