FROM node:18-alpine ENV PORT=7860 WORKDIR /app COPY server.js config.json package.json ./ EXPOSE 7860 CMD ["node", "server.js"]