FROM node:22-slim WORKDIR /app COPY package.json ./ RUN npm install --omit=dev COPY server.js ./ EXPOSE 8020 ENTRYPOINT ["node", "/app/server.js"]