FROM node:20 WORKDIR /app COPY package*.json ./ RUN npm ci --only=production COPY ./dist . EXPOSE 5555 CMD ["node", "src/index.js"]