FROM node:20-bullseye WORKDIR /app COPY . . RUN npm install EXPOSE 3000 CMD [ "node", "app.js" ]