tcustomb commited on
Commit
b676f0f
·
verified ·
1 Parent(s): 2bb44b0

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM node:20-alpine
2
+ USER root
3
+ RUN apk add --no-cache git python3 py3-pip make g++ build-base cairo-dev pango-dev chromium
4
+ ENV PUPPETEER_SKIP_DOWNLOAD=true
5
+ ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
6
+ RUN npm install -g flowise
7
+ WORKDIR /data
8
+ CMD ["npx", "flowise", "start"]