FROM node:19 WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . EXPOSE 8900 CMD [ "node", "app.js" ]