tcbwflow / Dockerfile
tcustomb's picture
Create Dockerfile
b676f0f verified
raw
history blame contribute delete
283 Bytes
FROM node:20-alpine
USER root
RUN apk add --no-cache git python3 py3-pip make g++ build-base cairo-dev pango-dev chromium
ENV PUPPETEER_SKIP_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
RUN npm install -g flowise
WORKDIR /data
CMD ["npx", "flowise", "start"]