FROM node:20.18 WORKDIR /app COPY package.json package-lock.json ./ RUN npm install RUN apt-get update COPY . . EXPOSE 4000 CMD npm start