FROM node:22-alpine LABEL authors="wy" EXPOSE 20123 COPY index.js . COPY package.json . RUN npm install CMD ["node", "index.js"]