FROM mcr.microsoft.com/playwright:v1.60.0-noble ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 WORKDIR /app COPY package*.json ./ RUN npm install --omit=dev --ignore-scripts --no-audit --no-fund COPY . . ENV NODE_ENV=production ENV HOST=0.0.0.0 ENV PORT=7860 EXPOSE 7860 CMD ["npm", "start"]