FROM node:18-alpine WORKDIR /usr/src/app ENV NODE_ENV=production COPY . . EXPOSE 8888 CMD [ "node", "index.js" ]