mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-22 19:01:16 +03:00
13 lines
212 B
Docker
13 lines
212 B
Docker
FROM node:18-alpine
|
|
|
|
USER root
|
|
|
|
RUN apk add --no-cache git
|
|
RUN apk add --no-cache python3 py3-pip
|
|
|
|
# You can install a specific version like: flowise@1.0.0
|
|
RUN npm install -g flowise
|
|
|
|
WORKDIR /data
|
|
|
|
CMD "flowise" |