chromium / Dockerfile
Johnsteve Costanos
Fix Chrome stability: add --no-zygote and other flags to prevent OOM-denied crashes
d8d1a41
Raw
History Blame Contribute Delete
227 Bytes
FROM node:22-slim
RUN apt-get update && apt-get install -y chromium \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY index.js package.json ./
RUN npm install --omit=dev
ENV PORT=7860
EXPOSE 7860
CMD ["node", "index.js"]