FROM node:slim ENV NODE_ENV=production ENV PORT=7860 WORKDIR /app COPY dist dist/ EXPOSE 7860 CMD [ "node", "./main.js" ]