FROM node:22-bullseye WORKDIR /opt/backend COPY . . RUN npm i EXPOSE 3000 ENTRYPOINT ["npm", "run", "start"]