You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
386 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Playwright 官方镜像(含 Chromium 与系统依赖RPA Worker 生产环境必需
FROM mcr.microsoft.com/playwright:v1.61.0-jammy
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm ci
COPY . .
RUN npx prisma generate
ENV NODE_ENV=production
# 镜像已预装浏览器,禁止重复下载
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
CMD ["npm", "run", "worker:rpa"]