Spaces:
Sleeping
Sleeping
File size: 309 Bytes
dc7ee79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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"]
|